我正在尝试使用google analytics enhanced ecommerce跟踪在电子商务目录页面上实施产品展示。
遵循规范,应该像这样实现它:
ga('create', 'UA-XXXXX-Y');
ga('require', 'ec');
ga('ec:addImpression', {
'id': 'P12345', // Product details are provided in an impressionFieldObject.
'name': 'Android Warhol T-Shirt',
'category': 'Apparel/T-Shirts',
'brand': 'Google',
'variant': 'black',
'list': 'Search Results',
'position': 1 // 'position' indicates the product position in the list.
});
ga('ec:addImpression', {
'id': 'P67890',
'name': 'YouTube Organic T-Shirt',
'type': 'view',
'category': 'Apparel/T-Shirts',
'brand': , 'YouTube',
'variant': 'gray',
'list': 'Search Results',
'position': 2
});
ga('send', 'pageview'); // Send product impressions with initial pageview.
虽然规格显示了追踪网页浏览事件。为了发送REAL印象,我想在用户向下滚动时触发信标。为此,我通过“延迟加载器”触发了事件,该加载器使用事件'ga(发送,印象)'逐渐加载目录上的图像,但它不起作用,如果我使用其他综合浏览量事件我这样做会破坏我在GA上的综合浏览量指标。
有没有人有关于如何解决这个问题的想法?
答案 0 :(得分:17)
注意:电子商务数据只能与现有匹配一起发送 例如网页浏览或活动。如果您使用电子商务命令但不使用 发送任何点击,或者在电子商务命令之前发送命中 电子商务数据将不会被发送。
发送non-interactive事件代替:
ga('send', 'event', 'catalog', 'impression', {'nonInteraction': true});