carlosmdh

eec.productClick

May 25th, 2022 (edited)
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.dataLayer  = window.dataLayer || [];
  2. window.dataLayer.push({
  3.     'event': 'eec.productClick',    // name of an event. In this case, always stays as eec.productClick
  4.     'ecommerce': {                  // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  5.       'click': {                            // name of an action. In this case, always stays as click
  6.         'actionField': {
  7.             'list': 'Tours en Madrid'       //name of a list in which the product was clicked  
  8.         },  
  9.         'products': [{
  10.             'name': 'The Yellow Bus',       // name of a product that is displayed. Always include it.
  11.             'id': 'TYB001',                 // id of a product. Always include it.
  12.             'price': '14.00',               // price of a product
  13.             'brand': 'The Yellow Bus',      // brand/vendor of a product
  14.             'category': 'Madrid',           // category of a product
  15.             'variant': 'Adulto',            // product variant. If there are no variants, exclude this key from the dataLayer.push
  16.             'position': '1'                 // number of a position (in which a product was visible at that time)
  17.        }]
  18.      }
  19.   }
  20. });
Add Comment
Please, Sign In to add comment