jaspacio

GA UA Product Click

Jul 5th, 2022 (edited)
470
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': 'main'          //name of a list in which the product was clicked  
  8.         },  
  9.         'products': [{
  10.             'name': 'Citizen - SUPER TITANIUM. MODEL: AW0060-11P',      // name of a product that was clicked. Always include it.
  11.             'id': 'CIT30283',       // id of a product. Always include it.
  12.             'price': '330.00',      // price of a product
  13.             'brand': 'Citizen',     // brand/vendor of a product
  14.             'category': 'Watches',  // category of a product
  15.             'variant': 'Silver',    // 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.             'cambridge_id': '',
  18.             'area_of_interest': '',
  19.             'job_title': '',
  20.             'user_type': '',
  21.        }]
  22.      }
  23.   }
  24. });
Add Comment
Please, Sign In to add comment