Last active
October 13, 2020 16:36
-
-
Save marketingclouded/35cb2db8b01c771a5b988f16910c86c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var _etmc = _etmc || []; | |
document.querySelector('.product-form__cart-submit').addEventListener('click',function () { | |
_etmc.push(["setOrgId", "MID"]); | |
_etmc.push(["trackCart", { "cart": [ | |
{"item" : "{{ product.handle }}", "quantity": "{{ 1 }}", "price" : "{{ product.price | money_without_currency }}", "unique_id" : "{{ product.selected_or_first_available_variant.sku }}" }, | |
{%- for item in cart.items -%} | |
{"item" : "{{ item.product.handle }}", "quantity": "{{ item.quantity }}", "price" : "{{ item.product.price | money_without_currency }}", "unique_id" : "{{ item.sku }}" }, | |
{% endfor %} | |
]}]); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment