Advertisement
JITreviso

NPC - add_to_cart

Jan 25th, 2024 (edited)
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.dataLayer = window.dataLayer || [];
  2. window.dataLayer.push({ ecommerce: null });
  3. window.dataLayer.push({
  4.   event: 'add_to_cart',              // name of the event. In this case, it always must be view_item_list
  5.   ecommerce: {                          
  6.     items: [{                           // an array where all currently viewed products must be included
  7.       item_name: 'Avanzado S Bronze',           // insert an actual product name
  8.       item_id: 'SBronze123',                // insert an actual product ID
  9.       price: '545.00',                  // insert an actual product price. Number or a string. Don't include currency code
  10.       item_brand: 'Nitro PC',           // insert an actual product brand
  11.       item_category: 'PC Gaming',           // insert an actual product top-level category
  12.       item_category2: 'Avanzado S',     // if it is possible to drill down the categories (e.g. Apparel, then T-shirt, then Men), use item_category2, item_category3, etc. Can use from item_category up to item_category5
  13.       item_variant: 'Gaming',               // insert an actual product variant. (Color, style, etc)
  14.       item_list_name: 'Search results', // insert the name of the list where the product is currently displayed
  15.       item_list_id: 'search_results',   // insert the list id where the product is currently displayed
  16.       index: 1,                         // insert product's position in that list
  17.       quantity: '1'                     // product quantity. In case of view_item_list, it will usually be equal to 1
  18.   }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement