Advertisement
GiacomoGalanti

Products list - when a product is clicked

Apr 7th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. <script>
  3. var dataLayer = window.dataLayer || [];
  4. function(productObj) {
  5. dataLayer.push({
  6. 'event': 'productClick',
  7. 'ecommerce': {
  8. 'click': {
  9. 'actionField': {'list': 'Search Results'}, //List required
  10. 'products': [{
  11. 'name': 'iPad Pro', //name or id required
  12. 'id': 'pad1232', //name or id required
  13. 'price': '899',
  14. 'brand': 'Apple',
  15. 'category': 'Tablets',
  16. 'variant': 'Space Gray',
  17. 'position': '1' }]
  18. }
  19. }
  20. });
  21. }
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement