Advertisement
JITreviso

NPC - add_payment_info

Jan 25th, 2024
595
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_payment_info',              // name of the event. In this case, it always must be view_item_list
  5.   ecommerce: {                          
  6.       payment_type: 'paypal',             // name of the payment method                  
  7.       items: [{                           // an array where all currently viewed products must be included
  8.       item_name: 'Avanzado S Bronze',           // insert an actual product name
  9.       item_id: 'SBronze123',                // insert an actual product ID
  10.       price: '545.00',                  // insert an actual product price. Number or a string. Don't include currency code
  11.       item_brand: 'Nitro PC',           // insert an actual product brand
  12.       item_category: 'PC Gaming',           // insert an actual product top-level category
  13.       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
  14.       item_variant: 'Gaming',               // insert an actual product variant. (Color, style, etc)
  15.       quantity: '1'                     // product quantity. In case of view_item_list, it will usually be equal to 1
  16.   }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement