LouisDon

eec.checkout1FirstStop

Jan 27th, 2020
101
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.checkout',                // name of an event. In this case, always stays as eec.checkout
  5.     'ecommerce': {                          // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'checkout': {                       // name of an action. In this case, always stays as checkout
  7.             'actionField': {  
  8.                 'step': 1                   // number of the checkout step that a user has entered (must always be 1 in this situation)
  9.             },
  10.             'products': [{                  // list of products a user had in a cart before entering the checkout
  11.                 'name': 'CONTINENTAL WINTERCONT TS-810S 245/45 R19 102 V',      // name of a product that is currently viewed
  12.                 'id': '000000000000088160',           // id of a product
  13.                 'price': '264.00',          // price of a product
  14.                 'brand': 'CONTINENTAL',         // brand/vendor of a product
  15.                 'category': 'PKW-Winter',      // category of a product
  16.                 'variant': '',        // product variant. If there are no variants, exclude this key from the dataLayer.push
  17.                 'quantity': 4
  18.             }]
  19.         }
  20.     }
  21. });
  22. </script>
Add Comment
Please, Sign In to add comment