Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- 'event': 'eec.productClick', // name of an event. In this case, always stays as eec.productClick
- 'ecommerce': { // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
- 'click': { // name of an action. In this case, always stays as click
- 'actionField': {
- 'list': 'Jahrgang 2020-2010' //name of a list in which the product was clicked
- },
- 'products': [{
- 'name': 'Heft 01/2020', // name of a product that is displayed. Always include it.
- 'id': '', // id of a product. Always include it. Hier CMMF Nummer.
- 'price': '4.80', // price of a product
- 'brand': 'Natur und Heilen', // brand/vendor of a product
- 'category': 'Hefte 2020', // category of a product
- 'variant': '', // product variant. If there are no variants, exclude this key from the dataLayer.push
- 'position': '1' // number of a position (in which a product was visible at that time)
- 'dimensionN': '' // A Product-scoped Custom Dimension for index number N
- 'metricN': '' // A Product-scoped Custom Metric for index number N
- }]
- }
- });
- </script>
Advertisement
RAW Paste Data
Copied
Advertisement