我正在使用带有电子商务跟踪功能的通用分析的Google代码管理器,我可以看到正确报告了交易。现在,我想添加产品范围的自定义维度/自定义指标,但看起来像信息,请参阅下面的脚本中的metric1:
<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'transactionId': '[transactionid]',
'transactionAffiliation': '[affiliation]',
'transactionTotal': [total_inc_tax],
'transactionTax': [tax_total],
'transactionShipping': 0,
'transactionProducts': [{
'sku': '[mypropid]',
'name': '[myproptitle]',
'price': [stayprice],
'quantity': [durrationofstay],
**'metric1': [test]**
}, ]
});
window.dataLayer.push({
'event': 'EcomTrans'
});
</script>
我在互联网上找到的大多数示例都与设置自定义维度/指标相关,与enhanced ecommerce tracking with google tag manager或Setting up custom dimension or custom metric without ecommerce tracking相关,任何指针都将受到赞赏。
在发布问题之前,我还经历了https://aukera.co.uk/blog/guide-analytics-custom-dimensions-in-google-tag-manager/#how-to-send-data-using-custom-dimensions和https://www.youtube.com/watch?v=so3_bKY0mnM。