Untitled
unknown
plain_text
3 years ago
674 B
7
Indexable
<script>
window.SLIDECART_ADD_TO_CART = function({ id, quantity }) {
// Fires whenever an item has been added to cart
dataLayer.push({
'event': 'ga4_add_to_cart',
'items': [{
'item_id': '{{ product.id }}',
'item_name': '{{ product.title | remove: "'" | remove: '"' }}',
'item_brand': '{{ product.vendor | remove: "'" | remove: '"' }}',
'item_cat': '{{ product.collections.last.title | remove: "'" | remove: '"' }}',
'variant_id': '{{ product.first_available_variant.id }}',
'currency': '{{ shop.currency }}',
'price': '{{ product.price | times: 0.01}}'
}]
});Editor is loading...