Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marketingclouded/3dcdc45ace8c39cbc4dddec06baf691e to your computer and use it in GitHub Desktop.
Save marketingclouded/3dcdc45ace8c39cbc4dddec06baf691e to your computer and use it in GitHub Desktop.
<script type="text/javascript" src="//MID.collect.igodigital.com/collect.js"></script>
{% if first_time_accessed %}
<script>
_etmc.push(["setOrgId", "MID"]);
_etmc.push(["trackConversion", { "cart": [
{%- for line_item in order.line_items -%}{"item" : "{{ line_item.product.handle }}", "quantity": "{{ line_item.quantity }}", "price" : "{{ line_item.product.price | money_without_currency}}", "unique_id" : "{{ line_item.sku }}" },{% endfor %}
]}]);
</script>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment