Advertisement
LouisDon

eec.addToCartWMF

Dec 11th, 2019
202
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': 'eec.addToCart',       // name of an event. In this case, always stays as eec.addToCart
  5.     'ecommerce': {                  // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'currencyCode': 'EUR',          // the currency which is currently used by a visitor
  7.         'add': {                        // name of an action. In this case, always stays as add
  8.             'actionField': {          
  9.                 'list': ''          // optional. name of a list from which the product was added to a cart  
  10.               },      
  11.             'products': [{              // list of products added to a cart. Can contain multiple products at the same time
  12.                 'name': 'WMF Profi Plus Multipresse, 35x 13cm',      // name of a product that is displayed. Always include it.
  13.                 'id': '',               // id of a product. Always include it. Hier CMMF Nummer.
  14.                 'price': '49.95',              // price of a product
  15.                 'brand': 'WMF',             // brand/vendor of a product
  16.                 'category': 'Küchenhelfer',          // category of a product
  17.                 'quantity': 1 ,
  18.                 'dimension56': '',            // A Product-scoped Custom Dimension for index number N (old SKU)
  19.                 'dimension57': '',            // A Product-scoped Custom Dimension for index number N (Magento_Id)
  20.                 'dimension58': '',            // A Product-scoped Custom Dimension for index number N (In/Out of Stock)
  21.                 'dimension59': ''            // A Product-scoped Custom Dimension for index number N (Is Club Sale - true/false)
  22.              
  23.             }]
  24.         }
  25.     }
  26. });
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement