我尝试使用Google跟踪代码管理器设置电子商务跟踪,但我无法将数据显示在Google Analytics中?
https://support.google.com/tagmanager/answer/6107169?hl=en
使用上面链接中提供的示例,这是我的代码:
<html>
<head>
<script>
window.dataLayer = window.dataLayer || [];
dataLayer.push({
'transactionId': '1238393768',
'transactionAffiliation': 'Website Name',
'transactionTotal': 105.78,
'transactionTax': 21.156,
'transactionShipping': 18.00,
'transactionProducts': [
{
'sku': '97',
'name': 'Test Product 1',
'category': 'Test Category One, Test Category Two',
'price': 13.99,
'quantity': 24
},
{
'sku': '97',
'name': 'Test Product 2',
'category': 'Test Category One, Test Category Two',
'price': 3.99,
'quantity': 22
},
]
});
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-CODE');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-CODE"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
</body>
</html>
有人可以告知为什么这不起作用以及如何让数据显示在Google Analytics中?
我不明白的一件事是,他知道如何/在何处将数据添加到我的分析帐户?我还需要做什么或GTM或GA中需要的任何配置吗?
感谢。
答案 0 :(得分:0)
您无法在标记管理器的脚本之前推送。它应该是变量的初始化。像:
<script>
dataLayer = [{
'pageCategory': 'signup',
'visitorType': 'high-value'
}];
</script>