Advertisement
GiacomoGalanti

purchase

May 17th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. <script>
  2. window.dataLayer = window.dataLayer || [];
  3. window.dataLayer.push({
  4. event: 'purchase', // name of the event. In this case, it always must be purchase
  5. ecommerce: {
  6. currency: 'EUR',
  7. value: 29.98, // order total (price of all products + shipping)
  8. tax: 3.00, // tax
  9. shipping: 5.00, // shipping costs
  10. affiliation: 'My online shop', // affiliation (e.g. affiliate id, name of the store, etc.)
  11. transaction_id: 'abc123', // transaction id
  12. coupon: 'ENDOFSUMMER', // if coupon was applied to the order, include it here
  13. items: [{ // an array with all products
  14. item_name: 'Product 1', // insert an actual product name
  15. item_id: 'product1', // insert an actual product ID
  16. price: 11.99, // insert an actual product price. Number or a string. Don't include currency code
  17. item_brand: 'brand A', // insert an actual product price
  18. item_category: 'Apparel', // insert an actual product top-level category
  19. 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
  20. item_variant: 'Blue', // insert an actual product variant
  21. quantity: '1', // product quantity
  22. item_coupon: 'SUMMER20' // if a coupon was applied not to the entire order but to one product, use item_coupon
  23. },{
  24. item_name: 'Product 2',
  25. item_id: 'product2',
  26. price: 12.99,
  27. item_brand: 'Brand B',
  28. item_category: 'Category B',
  29. item_variant: 'Yellow',
  30. quantity: '1'
  31. }]
  32. }
  33. });
  34.  
  35. </script>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement