SandroBabic

EEC - ProductDetail - Euro Tours

Mar 27th, 2021 (edited)
95
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.productDetail',       // name of an event. In this case, always stays as eec.productDetail
  5.     'ecommerce': {                      // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'detail': {                     // name of an action. In this case, always stays as detail
  7.           'actionField': {'list': 'Search Results'},    // optional. if this event happened in a certain list, pass its name with this key
  8.           'products': [{
  9.             'name': 'Villa Sana',      // name of a property that is currently viewed. Always include it.
  10.             'id': 'ET-0028',            // id of a property. Always include it.
  11.             'category': 'Villa with pool',      // category of a property
  12.            }]
  13.          }
  14.     }
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment