View difference between Paste ID: isjUffd0 and CAVj0sv4
SHOW: | | - or go back to the newest paste.
1
<script>
2
window.dataLayer  = window.dataLayer || [];
3
window.dataLayer.push({
4-
	'event': 'eec.removeFromCart',  		// name of an event. In this case, always stays as eec.removeFromCart
4+
	'event': 'removeFromCart',  		// name of an event. In this case, always stays as removeFromCart
5
	'ecommerce': {					// ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
6-
		'currencyCode': '{{currency}}',			// the currency which is currently used by a visitor  RSD
6+
7
			'actionField': {			
8
				'list': '{{product List name}}'			// optional. name of a list from which the product was added to a cart  
9
			  },		
10
			'products': [                   // list of products a user has added to cart
11
            {                  
12
                'name': '{{product name}}',      // name of a product that is currently viewed
13
                'id': '{{product ID}}',            // unique id (SKU) of a product
14
                'price': '{{product price}}',            // price of a product (The price of one item. The value must not include anything else except number separated by a decimal point. Don't use a comma as the separator, and don't include any currency symbols.)
15
                'brand': '{{product brand}}',           // brand/vendor of a product
16
                'category': '{{product category}}',      // Product category of the item. Can have maximum five levels of hierarchy. category/sub-category (ex. Mali kućni aparati/Usisivači/Usisivači na vodu)
17-
                'category': '{{product category}}',      // Product category of the item. Can have maximum five levels of hierarchy. category/sub-category (ex. device/mobile-phone/samsung/galaxy20)
17+
18
                'quantity' : '{{product quantity}},              // product quantity
19
            	'dimensionN': '{{custom product attribute}}', //optional. A Product-scoped Custom Dimension for index number N. If there are no variants, exclude this key from the dataLayer.push
20-
            	'dimension20': '{{tariff}}', //optional. A Product-scoped Custom Dimension for index number N. If there are no variants, exclude this key from the dataLayer.push
20+
21
			}]
22
		}
23
	}
24
});
25
</script>