如何将自定义维度和自定义维度的电子商务数据层发送到通用分析?

时间:2017-11-10 03:45:49

标签: e-commerce google-tag-manager universal-analytics

我正在使用带有电子商务跟踪功能的通用分析的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 managerSetting 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-dimensionshttps://www.youtube.com/watch?v=so3_bKY0mnM

0 个答案:

没有答案