Advertisement
emanuel1109

pc - EE - add_payment_info

Jun 27th, 2022
80
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: 'Credit Card',                // payment method
  6.     items: [{                           // an array with all products, I put only one because you usually checkout for one
  7.       item_name: 'Product 1',           // insert an actual product name
  8.       item_id: 'product1',              // insert an actual product ID / SKU
  9.       currency: 'USD', // insert currency here with the correct format 'USD' 'GBP' 'EUR' etc.
  10.       price: '11.99',                   // insert an actual product price. Number or a string. Don't include currency code
  11.       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
  12.       item_category2: 'Silk',
  13.       item_variant: 'M',             // insert an actual product variant
  14.       quantity: '1'                     // product quantity
  15.     },{
  16.       item_name: 'Product 2',           // insert an actual product name
  17.       item_id: 'product2',              // insert an actual product ID / SKU
  18.       currency: 'USD', // insert currency here with the correct format 'USD' 'GBP' 'EUR' etc.
  19.       price: '11.99',                   // insert an actual product price. Number or a string. Don't include currency code
  20.       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
  21.       item_category2: 'Silk',
  22.       item_variant: 'M',             // insert an actual product variant
  23.       quantity: '1'                     // product quantity
  24.     }]
  25.   }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement