Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dylanjhunt/66e1c6183d4f78a503c4d2f06ee94782 to your computer and use it in GitHub Desktop.
Save dylanjhunt/66e1c6183d4f78a503c4d2f06ee94782 to your computer and use it in GitHub Desktop.
Shopify DataLayer variables
<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'ecomm__orderValue': '{{ checkout.total_price | money_without_currency }}',
'ecomm__orderNumber': '{{ checkout.order_number }}',
'ecomm__itemCount': '{{ line_items.size }}',
'ecomm__customerEmail': '{{ checkout.customer.email }}'
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment