Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% comment %}
- Google Ads Dynamic Remarketing Script by Ovipreneur
- https://www.fiver.com/ovi2491
- {% endcomment %}
- {% comment %}Set to false if GTAG is already loaded on the page. Leave to true if unsure.{%endcomment%}
- {% assign load_gtag = true %}
- {% if first_time_accessed %}
- {% comment %} Enter your account specific values below {% endcomment %}
- {% assign google_conversion_id = "453384864" %}
- {% assign shopify_store_country = 'US' %}
- {% if shop.currency == 'CAD' %}
- {% assign shopify_store_country = 'CA' %}
- {% elsif shop.currency == 'AUD' %}
- {% assign shopify_store_country = 'AU' %}
- {% endif %}
- {%if load_gtag %}
- <!-- Global site tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=AW-{{ google_conversion_id }}"></script>
- {% endif %}
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'AW-{{ google_conversion_id }}');
- </script>
- <!-- Event snippet for Web Order conversion page -->
- <script>
- // Google Ads Remarketing
- gtag('event', 'purchase', {
- 'send_to': 'AW-{{ google_conversion_id }}',
- 'value': '{{ total_price | divided_by: 100.0 }}',
- '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 %}]
- });
- </script>
- {% endif %}
Add Comment
Please, Sign In to add comment