ovipreneur

Google Ads Remarketing Tag-Checckout

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