Первая загрузка страницы (доступно только на странице успешного заказа order2.liquid).
Переменная полезна для отправки аналитики по заказам.
<script>
{% if order.first_time_loading_page? %}
dataLayer.push({
'ecommerce': {
'currencyCode': 'RUB',
'purchase': {
'actionField': {
id: '{{ order.id}}',
affiliation: 'Online Store',
revenue: '{{ order.total_price }}',
tax: '{{ order.tax_amount }}',
shipping: '{{ order.delivery_price }}',
coupon: '{{ order.coupon }}'
},
'products': [
{% for item in order.items %}
{% capture products_ec %}{"id":"{{item.product.id}}","name":"{{item.product.title}}","price":"{{item.variant.price}}","category":"{{item.product.canonical_collection.title}}","variant":"","quantity":{{ item.quantity }}}{% endcapture %}
{{products_ec}},
{% endfor %}
]
}
},
'event': 'gtm-ee-event',
'gtm-ee-event-category': 'Enhanced Ecommerce',
'gtm-ee-event-action': 'Purchase',
'gtm-ee-event-non-interaction': 'False',
})
{% endif %}
</script>