Skip to content

Instantly share code, notes, and snippets.

@vczb
Created April 1, 2020 14:10
Show Gist options
  • Select an option

  • Save vczb/f6ef49901f5b22453d4de6dbc2d80525 to your computer and use it in GitHub Desktop.

Select an option

Save vczb/f6ef49901f5b22453d4de6dbc2d80525 to your computer and use it in GitHub Desktop.
data layer for e-commerce
<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