Advertisement
JITreviso

ga4_eec | add_payment_info_whirlpool

Oct 17th, 2022 (edited)
1,154
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_payment_info',            // name of the event. In this case, it always must be add_payment_info
  4.   ecommerce: {
  5.     payment_type: 'MercadoPago',             // name of the payment method                      
  6.      items: [{                           // an array with a product that was clicked
  7.       item_name: 'Heladera No Frost Whirlpool',           // insert an actual product name
  8.       item_id: 'WRA09R3+WMS20AS',              // insert an actual product ID
  9.       price: '132.499',                   // insert an actual product price. Number or a string. Don't include currency code
  10.       item_category: 'Refrigeración',             // insert an actual product variant
  11.       item_category2: 'Heladeras',             // insert an actual product variant
  12.       item_brand: 'Whirlpool',            // insert an actual product price
  13.       item_variant: 'Compacta',             // insert an actual product variant
  14.       item_variant: 'Blanco',             // insert an actual product variant
  15.       item_variant: '374lts',             // insert an actual product variant
  16.       item_variant: 'Freezer Superior',             // insert an actual product variant
  17.       item_variant: 'Inverter',             // insert an actual product variant
  18.       item_list_name: 'Search results', // insert the name of the list where the product is currently displayed
  19.       item_list_id: 'search_results_home',   // insert the list id where the product is currently displayed
  20.       index: 1,                         // insert product's position in that list
  21.       quantity: '1'                     // product quantity. In this case, it will usually be equal to 1
  22.     }]
  23.   }
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement