我想在Analytic的电子商务模块中记录交易。然而,他们没有注册,我不知道为什么。页面跟踪发生在页面顶部:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22238012-1']);
_gaq.push(['_trackPageview']);
就在电子商务代码之前,我正在跟踪一个事件。
_gaq.push(['_trackEvent', 'Conference', 'Signup', '1']);
事件和网页跟踪都会显示在Google Analytics中,但这一点不会出现。
_gaq.push(['_addTrans',
"26", // transaction ID - required
"", //store name
"5160", // total - required
"0", //tax
"0.0", //shipping
"", //city
"", //state
"DK" // country
]);
_gaq.push(['_addItem',
"26", // transaction ID - necessary to associate item with transaction
"1", // SKU/code - required
"Paid Attendant", // product name
"", //category
"3195", // unit price - required
"1" // quantity - required
]);
_gaq.push(['_addItem',
"26", // transaction ID - necessary to associate item with transaction
"3", // SKU/code - required
"Extra Material", // product name
"", //category
"1965.00", // unit price - required
"1" // quantity - required
]);
_gaq.push(['_trackTrans']); //submits transaction to the Analytics servers
你知道为什么不这样做吗?
谢谢,Michal
答案 0 :(得分:0)
现在已经解决了。我的交易花了将近一天多的时间才出现,但它现在就出现了。 记录的交易ID正是我昨天尝试过的。所以上面的例子确实有效。