JITreviso

Limonada | eec.productImpression

Mar 19th, 2022 (edited)
380
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.productImpression',       // name of an event. In this case, always stays as eec.productImpression
  5.     'ecommerce': {                          // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'currencyCode': 'USD',              // the currency which is currently set by a visitor                      
  7.         'impressions': [                    // type of an ecommerce action. In this case, always stays as impressions
  8.          {
  9.             'name': 'Chaqueta Bear Queen Niña Crudo Limonada',      // name of a product that is displayed. Always include it.
  10.             'id': 'LIM30283',               // id of a product. Always include it.
  11.             'price': '330.00',              // price of a product
  12.             'brand': 'Limonada Chile/USA',             // brand/vendor of a product
  13.             'category': 'Niña Ropa',          // category of a product
  14.             'variant': 'Bear Queen',            // product variant. If there are no variants, exclude this key from the dataLayer.push
  15.             'list': 'main',                 // name of a product list. See all the possible list names in the specification
  16.             'position': '1'                 // number of a position (in which a product was visible at that time)
  17.         },          
  18.          {
  19.             'name': 'Parka Sleeveless Niña Gris Limonada',      
  20.             'id': 'LIM30288',    
  21.             'price': '290.00',
  22.             'brand': 'Limonada Chile/USA',
  23.             'category': 'Niña Ropa',
  24.             'variant': 'Sliveeless',      
  25.             'list': 'Search',
  26.             'position': '2'     }]
  27.     }
  28. });
  29. </script>
Add Comment
Please, Sign In to add comment