-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_payment_info
27 lines (27 loc) · 1.23 KB
/
add_payment_info
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
event: 'add_payment_info', // name of the event. In this case, it always must be add_payment_info
ecommerce: {
payment_type: 'paypal', // name of the payment method
items: [{ // an array with all products
item_name: 'Product 1', // insert an actual product name
item_id: 'product1', // insert an actual product ID
price: '11.99', // insert an actual product price. Number or a string. Don't include currency code
item_brand: 'brand A', // insert an actual product price
item_category: 'Apparel', // insert an actual product top-level category
item_category2: 'T-shirt', // 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
item_variant: 'Blue', // insert an actual product variant
quantity: '1' // product quantity during the checkout
},{
item_name: 'Product 2',
item_id: 'product2',
price: '12.99',
item_brand: 'Brand B',
item_category: 'Category B',
item_variant: 'Yellow',
quantity: '1'
}]
}
});
</script>