Advertisement
martech-george

Untitled

Sep 3rd, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. gtag('event', 'add_to_cart', {
  3. "currency": "EUR",
  4. "value": 2, // Price (or sum of prices if quantity is more than 1) for the product added to cart
  5. "items": [ // Array with the product added to cart
  6. {
  7. "id": "P12345",
  8. "name": "Android Warhol T-Shirt",
  9. "brand": "Google",
  10. "category": "Apparel/T-Shirts",
  11. "variant": "Black",
  12. "quantity": 1,
  13. "price": 2,
  14. "google_business_vertical": "retail"
  15. }
  16. ]
  17. });
  18. </script>
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement