Advertisement
LouisDon

eec.removeFromCartPneuhage

Jul 14th, 2021
548
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.removeFromCart',  // name of an event. In this case, always stays as eec.removeFromCart
  5.     'ecommerce': {                  // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'currencyCode': 'EUR',      // the currency which is currently used by a visitor
  7.         'remove': {                 // name of an action. In this case, always stays as remove                          
  8.            'products': [{              // list of products removed from a cart. can include multiple products.
  9.                 'name': 'CONTINENTAL WINTERCONT TS-810S 245/45 R19 102 V',      // name of a product that was removed from a cart
  10.                 'id': '000000000000088160',       // id of a product
  11.                 'price': '264.00',      // price of a product
  12.                 'brand': 'CONTINENTAL',     // brand/vendor of a product
  13.                 'category': 'PKW-Winter',  // category of a product
  14.                 'variant': ''     // product variant. If there are no variants, exclude this key from the dataLayer.push
  15.         }]
  16.         }
  17.     }
  18. });
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement