Advertisement
dusanmiha

VIP - EEC - Checkout Step 5

Dec 3rd, 2020 (edited)
188
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': 5                   // number of the checkout step that a user has entered (must always be 5 in this situation)
  9.             }
  10.         }
  11.     }
  12. });
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement