Created
April 1, 2020 14:10
-
-
Save vczb/f6ef49901f5b22453d4de6dbc2d80525 to your computer and use it in GitHub Desktop.
data layer for e-commerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| var dataLayer = window.dataLayer || []; | |
| dataLayer.push({ | |
| 'event': 'orderPlaced', | |
| 'transactionId': 'FINANCING-ID', | |
| 'transactionTotal': 'TOTAL-VALUE', | |
| 'transactionProducts': [{ | |
| 'sku': 'ITEM-ID', | |
| 'name': 'ITEM-NAME', | |
| 'price': 'ITEM-VALUE', | |
| 'quantity': 'ITEM-QUANTITY' , | |
| }] | |
| }); | |
| console.log(dataLayer); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment