emanuel1109

iz - matt - view_item_list

Mar 31st, 2022 (edited)
65
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: 'view_item_list',              // 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 product is currently displayed  
  12.       quantity: '1'                     // product quantity. In case of view_item_list, it will usually be equal to 1
  13.     },{
  14.       item_name: 'Product 2',           // insert an actual product name
  15.       item_id: 'product2',              // insert an actual product ID / SKU
  16.       currency: 'USD', // insert currency here with the correct format 'USD' 'GBP' 'EUR' etc.
  17.       price: '11.99',                   // insert an actual product price. Number or a string. Don't include currency code
  18.       item_category: 'Lower East Side Double 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
  19.       item_list_name: 'Lower East Side', // insert the name of the list where the product is currently displayed  
  20.       quantity: '1'                     // product quantity. In case of view_item_list, it will usually be equal to 1            
  21.     }]
  22.   }
  23. });
Add Comment
Please, Sign In to add comment