Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seonews-ru/973563d4992da1517a82fa87165e6256 to your computer and use it in GitHub Desktop.
Save seonews-ru/973563d4992da1517a82fa87165e6256 to your computer and use it in GitHub Desktop.
Стандартный код электронной торговли для отслеживания покупок
dataLayer.push ({
'transactionId': '1234',
'transactionAffiliation': 'Acme Clothing',
'transactionTotal': 38.26,
'transactionTax': 1.29,
'transactionShipping': 5,
'transactionProducts': [{
'sku': 'DD44',
'name': 'T-Shirt',
'category': 'Apparel',
'price': 11.99,
'quantity': 1
},{
'sku': 'AA1243544',
'name': 'Socks',
'category': 'Apparel',
'price': 9.99,
'quantity': 2
}]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment