Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.dataLayer = window.dataLayer || [];
- {% if first_time_accessed %}
- window.dataLayer.push({ ecommerce: null });
- window.dataLayer.push({
- event: "purchase",
- ecommerce: {
- transaction_id: "{{ order.order_number }}" || "{{ checkout.id }}",
- value: {{ total_price | times: 0.01 }},
- tax: {{ tax_price | times: 0.01 }},
- shipping: {{ shipping_price | times: 0.01 }},
- currency: "{{ shop.currency }}",
- items: [
- {% for line_item in line_items %}
- {
- item_id: "{{ line_item.product_id }}",
- item_name: "{{ line_item.title | remove: "'" | remove: '"' }}",
- currency: "{{ shop.currency }}",
- price: {{ line_item.original_price | times: 0.01 }},
- quantity: {{ line_item.quantity }}
- },
- {% endfor %}
- ]
- }
- });
- {% endif %}
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement