Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. window.dataLayer = window.dataLayer || [];
  2. window.dataLayer.push({
  3. 'event': 'checkout',
  4. 'ecommerce': {
  5. 'currencyCode': 'GBP',
  6. 'checkout': {
  7. 'actionField': {'step': '1'}, //there is only 1 step, so it is just ‘1’
  8. },
  9. 'products': [{ // adjust product array according to the order data
  10. 'name': 'Stress-Ball Paul',
  11. 'id': 'SK DEADPAUL1',
  12. 'price': '7.50',
  13. 'brand': '', //if brand is not applicable, just use empty string
  14. 'category': '',
  15. 'quantity': 1
  16. },
  17. {
  18. 'name': 'Cable Holder',
  19. 'id': 'GW CABLEHOLDER1',
  20. 'price': '5.00',
  21. 'brand': '', //if brand is not applicable, just use empty string
  22. 'category': '',
  23. 'quantity': 1
  24. }]
  25.  
  26. }
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement