Advertisement
emanuel1109

iz - matt - add_to_cart

Mar 31st, 2022
54
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: 'add_to_cart',             // name of the event. In this case, it always must be view_item_list
  4.   ecommerce: {
  5.     items: [{                           // an array with all products
  6.       item_name: 'Product 1',           // insert an actual product name
  7.       item_id: 'product1',              // insert an actual product ID / SKU
  8.       currency: 'USD', // insert currency here with the correct format 'USD' 'GBP' 'EUR' etc.
  9.       price: '11.99',                   // insert an actual product price. Number or a string. Don't include currency code
  10.       item_category: 'Lower East Side Single Rooms',         // insert an actual product top-level category, if it is possible to drill down the categories (e.g. Apparel, then T-shirt, then Men), use item_category2, etc. Can use from item_category up to item_category5
  11.       item_list_name: 'Lower East Side', // insert the name of the list where the item was added from (if he added from a list which is the current stage in our website)
  12.       quantity: '1'                     // product quantity of how many products were added to a cart, usually 1 in our website.
  13.     }]
  14.   }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement