Advertisement
graybar

EE- Checkout - step 1 - shopping cart

Nov 12th, 2019
236
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.
  6.                                      New EE data must always be pushed to this object
  7.        'checkout': {              // name of an action. In this case, always stays as checkout
  8.             'actionField': {          
  9.                 'step': 1         // number of the checkout step that a user has entered (must always be 1 in this situation)
  10.             },
  11.             'products': [{
  12.              'name': 'Mighty Mo&#174',  // name of a product that is currently viewed. Always include it.
  13.              'id': '25645386',           // id of a product. Always include it.
  14.              'price': '1116.59',          // price of a product
  15.              'brand': 'Ortronics (Legrand)',         // brand/vendor of a product
  16.              'category': 'Network Racks and Cabinets',      // category of a product
  17.              'variant': 'Silver'         // product variant. If there are no variants, exclude this key from the dataLayer.push
  18.              'quantity': '1'
  19.                      
  20. }]
  21.          }
  22.     }
  23. });
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement