Advertisement
FilipFD

Tehnomanija - removeFromCart

Jan 29th, 2021
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. window.dataLayer  = window.dataLayer || [];
  3. window.dataLayer.push({
  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.         'remove': {                     // name of an action. In this case, always stays as remove
  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.                 'variant': '{{product variant}}',       // product variant. If there are no variants, exclude this key from the dataLayer.push
  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.                'metricN': '{{custom product metric}}' //optional. A Product-scoped Custom Metric for index number N. If there are no variants, exclude this key from the dataLayer.push
  21.             }]
  22.         }
  23.     }
  24. });
  25. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement