Advertisement
graybar

EE- Remove from Cart

Nov 12th, 2019
155
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.addToCart',       // name of an event. In this case, always stays as eec.addToCart
  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, optional
  7.         'remove': {                        // name of an action. In this case, always stays as add
  8.             'actionField': {          
  9.                 'list': 'Category-Results'   // optional. name of a list from which the product was added to a cart  
  10.               },      
  11.            'products': [{
  12.             'name': 'Mighty Mo&#174',   // name of a product that is currently viewed. Always include it.
  13.             'id': '25645386',           // id of a product. Always include it.
  14.             'price': '1116.59',          // price of a product
  15.             'brand': 'Ortronics (Legrand)',  // brand/vendor of a product
  16.             'category': 'Network Racks and Cabinets',      // category of a product
  17.             'variant': 'Silver'         // product variant. If there are no variants, exclude this key from the dataLayer.push
  18.            }]
  19.          }
  20.     }
  21. });
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement