カスタム変数を Google アナリティクスにプッシュするために、Web サイトに次のスクリプトがあります。しかし、5 日経ってもこのデータは分析に表示されません。ここで私が間違っていることに誰かが気付くことができますか?
<!-- BEGIN GOOGLE ANALYTICS CODE -->
<script type="text/javascript">
//<![CDATA[
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'xxxxxxxxxx']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setCustomVar', 1, 'Product SKU','Test Data', 3]);
//]]>
</script>
<!-- END GOOGLE ANALYTICS CODE -->
追加情報: このスクリプトは、Magento の Google Analytis モジュールからのものです。GA.php で _toHTML メソッドを書きすぎています。