Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- 'event': 'eec.checkout', // name of an event. In this case, always stays as eec.checkout
- 'ecommerce': { // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
- 'checkout': { // name of an action. In this case, always stays as checkout
- 'actionField': {
- 'step': 1 // number of the checkout step that a user has entered (must always be 1 in this situation)
- },
- 'products': [{ // list of products a user had in a cart before entering the checkout
- 'name': 'WMF Profi Resist Servierpfanne, Ø 28 cm', // name of a product that is currently viewed
- 'id': '', // id of a product. Hier CMMF Nummer.
- 'price': '330.00', // price of a product
- 'brand': 'WMF', // brand/vendor of a product
- 'category': 'Pfannen', // category of a product
- 'variant': 'Silver', // product variant. If there are no variants, exclude this key from the dataLayer.push
- 'quantity': 1
- 'dimension56': '', // A Product-scoped Custom Dimension for index number N (old SKU)
- 'dimension57': '', // A Product-scoped Custom Dimension for index number N (Magento_Id)
- 'dimension58': '', // A Product-scoped Custom Dimension for index number N (In/Out of Stock)
- 'dimension59': '' // A Product-scoped Custom Dimension for index number N (Is Club Sale - true/false)
- }]
- }
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement