我有一个网站,我目前正在从登录页面跟踪我的注册页面的点击次数。 现在我遇到的问题是我的网址包含用户语言,我想跟踪这些目标,忽略用户的语言设置。
我的网址示例:
Login:
www.mywebsite.com/en/signin
www.mywebsite.com/nl/signin
Signup:
www.mywebsite.com/en/signup
www.mywebsite.com/nl/signup
是否可以跟踪或是否应该按语言创建实验? (我觉得非常麻烦)
答案 0 :(得分:0)
我有完全相同的问题。您可以实施一个跟踪多种语言的实验。例如,您可以使用内容实验JavaScript API来跟踪read Google's client-side experiments guide here。
要点:
<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.4.4</center>
</body>
</html>
作为实验的一部分(www.mywebsite.com/[lang]/signin)<script src="//www.google-analytics.com/cx/api.js?experiment=EXPERIMENT_ID"></script>
var chosenVariation = cxApi.chooseVariation();
(这会写__utmx和__utmxx Cookie)cxApi.setChosenVariation(chosenVariation);
)你find the xcApi reference here
我希望这有帮助!