我在Magento网站上也尝试使用Universal Analytics 启用受众特征和兴趣报告。
我已经阅读了已经存在的问题并且没有回答我的问题:Enable Demographics and Interests reports in Universal Analytics
我已经为我的Magento网站设置了通用分析,只需在Magento后端输入我的Google Analytics帐号即可。它在过去几个月一直运作良好,但我现在想要启用人口统计和兴趣报告。
Google Analytics(分析)告诉我“您的受众特征和兴趣报告已启用,但您的Google Analytics跟踪代码不包含显示它们的必要支持”,并将我引导至以下信息页面:{ {3}}
它告诉我只需将以下代码添加到现有跟踪代码中:
ga('require', 'displayfeatures');
我发现此代码应位于: 应用程序/设计/前端/默认/ YOURTHEME /模板/页/ HTML / head.phtml
但是当我打开这个文件时,其中唯一的代码如下:
<meta http-equiv="Content-Type" content="<?php echo $this->getContentType() ?>" />
<title><?php echo $this->getTitle() ?></title>
<meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
<meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" />
<meta name="robots" content="<?php echo htmlspecialchars($this->getRobots()) ?>" />
<?php if(Mage::getStoreConfig('milanoconfig/generaloptions/responsive') == 1): ?>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<?php endif; ?>
<link rel="icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
<?php echo $this->getCssJsHtml() ?>
<?php echo $this->getChildHtml() ?>
<?php echo $this->helper('core/js')->getTranslatorScript() ?>
<?php echo $this->getIncludes() ?>
<!--[if lt IE 7]>
<script type="text/javascript">
//<![CDATA[
var BLANK_URL = '<?php echo $this->helper('core/js')->getJsUrl('blank.html') ?>';
var BLANK_IMG = '<?php echo $this->helper('core/js')->getJsUrl('spacer.gif') ?>';
//]]>
</script>
<![endif]-->
根据我的阅读,此文件还应包含以下Google Analytics代码,但不包括:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXX-XX', 'example.com');
ga('send', 'pageview');
</script>
有人知道为什么此代码目前不在此文件中,即使我的Google Analytics似乎工作正常,只需在Magento后端添加Google Analytics帐号即可?
是否有人也知道我现在应该做些什么来启用人口统计和兴趣报告。我是否应该手动添加此代码,或者是否有原因导致此代码尚未到位,这些天可能Magento设置不同?我使用的是Magento 1.7.0.2版本。
由于