Advertisement
Vinni111

EEC.productImpression

Jun 24th, 2020 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <script>
  2. window.dataLayer = window.dataLayer || [];
  3. window.dataLayer.push({
  4. 'event': 'eec.productImpression', // name of an event. In this case, always stays as eec.productImpression
  5. 'ecommerce': { // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6. 'impressions': [ // type of an ecommerce action. In this case, always stays as impressions
  7. {
  8. 'name': 'Rechtsschutz', // name of a product that is displayed. Always include it.
  9. 'id': 'RS', // id of a product. Always include it.
  10. 'price': '0', // price of a product --> An dieser Stelle irrelevant?
  11. 'brand': 'AR', // brand/vendor of a product
  12. 'category': 'PK', // category of a product
  13. // 'variant': 'Silver', // product variant. If there are no variants, exclude this key from the dataLayer.push
  14. 'list': 'Landingpage', // name of a product list. See all the possible list names in the specification
  15. 'position': '1' // number of a position (in which a product was visible at that time)
  16. }
  17. });
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement