Advertisement
emanuel1109

tnp - Eric - add_to_cart

Apr 4th, 2022 (edited)
67
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 add_to_cart
  4.   ecommerce: {                          
  5.     items: [{                           // an array with a product (or multiple products) that was added to a cart
  6.       item_name: 'Product 1',           // insert an actual product name
  7.       item_id: 'product1',              // insert an actual product ID / SKU
  8.       currency: 'EUR', // insert currency here with the correct format 'USD' 'GBP' 'EUR' etc.
  9.       price: '11.99',                   // insert an actual product price before discount. Number or a string. Don't include currency code
  10.       item_category: 'Blankets',         // 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_variant: 'Blue',             // insert an actual product variant
  12.       quantity: '1'                     // product quantity of how many products were added to a cart
  13.     }]
  14.   }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement