ovipreneur

KG Beauty-Google Ads Dynamic Remarketing Tag-Theme

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