您好,我已经在Google Analytics(分析)上启用了增强型电子商务功能,并使用select_content跟踪产品点击次数。
select_content实时显示,但是当我单击它时什么也没有显示。
这是我的代码
<?php
$sku ="";
$productname ="";
$productcategory ="";
$current_product = Mage::registry('current_product');
$_category_detail=Mage::registry('current_category');
if($current_product) {
$sku = $current_product->getSku();
$productname = $current_product->getName();
$productcategory = $_category_detail->getName();;
}
?>
<script>
gtag('event', 'select_content', {
"content_type": "product",
"items": [
{
"id": "<?php echo $sku; ?>",
"name": "<?php echo $productname; ?>",
"list_name": "Search Results",
"category": "<?php echo $productcategory; ?>"
}
]
});
</script>
事件类别显示为参与,事件操作显示为select_content。当我点击参与时-动作是select_content,事件标签是product。没有产品列表。
有人可以帮忙吗?