ovipreneur

Google Ads Remarketing Tag-Checkout

Dec 30th, 2020 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {% comment %}
  2. Google Ads Dynamic Remarketing Script by Ovipreneur
  3. https://www.fiver.com/ovi2491
  4. {% endcomment %}
  5.  
  6. {% comment %}Set to false if GTAG is already loaded on the page. Leave to true if unsure.{%endcomment%}
  7. {% assign load_gtag = false %}
  8.  
  9. {% if first_time_accessed %}
  10. {% comment %} Enter your account specific values below {% endcomment %}
  11. {% assign google_conversion_id = "587449522" %}
  12.  
  13. {% assign shopify_store_country  = 'FR' %}
  14. {% if shop.currency == 'CAD' %}
  15. {% assign shopify_store_country  = 'CA' %}
  16. {% elsif shop.currency == 'AUD' %}
  17. {% assign shopify_store_country  = 'AU' %}
  18. {% endif %}
  19.  
  20.  
  21. {%if load_gtag %}
  22. <!-- Global site tag (gtag.js) -->
  23. <script async src="https://www.googletagmanager.com/gtag/js?id=AW-{{ google_conversion_id }}"></script>
  24. {% endif %}
  25. <script>
  26.   window.dataLayer = window.dataLayer || [];
  27.   function gtag(){dataLayer.push(arguments);}
  28.   gtag('js', new Date());
  29.   gtag('config', 'AW-{{ google_conversion_id }}');
  30. </script>
  31.  
  32. <!-- Event snippet for Web Order conversion page -->
  33. <script>
  34.     // Google Ads Remarketing
  35.     gtag('event', 'purchase', {
  36.       'send_to': 'AW-{{ google_conversion_id }}',
  37.       'value': '{{ total_price | divided_by: 100.0 }}',
  38.       'items': [{% for item in order.line_items %}{'id':'shopify_{{ shopify_store_country }}_{{ item.product.id }}_{{ item.variant.id }}','google_business_vertical': 'retail'}{% unless forloop.last %}, {% endunless %}{% endfor %}]
  39.     });
  40. </script>
  41.  
  42. {% endif %}
Add Comment
Please, Sign In to add comment