Advertisement
LouisDon

eec.productDetailNatu

Jan 15th, 2020
206
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': 'Jahrgang 2020-2010'},    // optional. if this event happened in a certain list, pass its name with this key
  8.           'products': [{
  9.             'name': 'Heft 01/2020',      // name of a product that is displayed. Always include it.
  10.             'id': '',               // id of a product. Always include it. Hier CMMF Nummer.
  11.             'price': '4.80',              // price of a product
  12.             'brand': 'Natur und Heilen',             // brand/vendor of a product
  13.             'category': 'Hefte 2020',          // category of a product
  14.             'variant': '',            // product variant. If there are no variants, exclude this key from the dataLayer.push
  15.             'position': '1'                 // number of a position (in which a product was visible at that time)
  16.             'dimensionN': ''            // A Product-scoped Custom Dimension for index number N
  17.             'metricN': ''              // A Product-scoped Custom Metric for index number N
  18.         }]
  19.          }
  20.     }
  21. });
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement