我试图在Isotope
下找到包含大量内容的主页将每个哈希更改显示为Google Analytics中的综合浏览量。最初,我打算将此作为事件,但它确实应该是网页浏览。
所以我设置了修改后的GA:
(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-XXXXXXXX-X', {'allowAnchor': true});
ga('send', 'pageview', { 'page': location.pathname + location.search + location.hash});
在Google Analytics中,如果有人访问特定网址,我会立即看到哈希标记 - 示例:http://www.example.com/#pet-health 如果他们重新加载页面,我会在GA中看到哈希,但是如果他们点击同位素" nav"链接到达它。如果他们点击,我只是看到" /"
在同位素射击中,我所拥有的似乎并不起作用:
//Sets up filtering on click of Isotope navigational elements
$('#isotopeFilters a, .subnav a, #isotopeContainer .isotopeNav a, .page-template-page-home-php #logo').click(function(){
var selector = $(this).attr('data-filter');
var prettyselector = selector.substr(1);
ga('send', 'pageview', location.pathname+location.search+location.hash);
location.hash = prettyselector;
$('#isotopeFilters a, .subnav a').removeClass('active');
$('a[class="' + prettyselector + '"]').addClass('active');
$container.isotope({
filter: selector,
itemSelector: '.item',
masonry: {
columnWidth: 270
},
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
return false;
});
我认为点击功能中的这一行可以解决问题:
ga('send', 'pageview', location.pathname+location.search+location.hash);
我的语法不正确或缺少某些内容吗?
//Fires Isotope functionality when hash/URL changes
$(window).hashchange( function(){
if(location.hash!=''){
var hashfilter = '.' + location.hash.substr(1);
}else{
var hashfilter = '.home';
}
$container.isotope({
filter: hashfilter,
itemSelector: '.item',
masonry: {
columnWidth: 270
},
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
isotopeSubNav();
});
if(location.hash!=''){
var hashfilter = '.' + location.hash.substr(1);
ga('send', 'pageview', location.pathname+location.search+location.hash);
$(hashfilter).addClass('active');
}
这是使用相同的语法,所以我假设如果我修复一个,将语法复制到hashchange函数也会得到该记录。
答案 0 :(得分:9)
要更改发送到GA的页面路径,您只需稍微修改一下代码:
ga('send', 'pageview', {'page': location.pathname+location.search+location.hash});
可在此处找到更多信息:https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced?hl=en#fieldObject
答案 1 :(得分:5)
Google不建议在发送page
来电时发送pageview
:
虽然从技术上讲,pageview命中的send命令接受 可选页面字段作为第三个参数,传递页面字段 在跟踪单页应用程序时,不建议使用这种方式。这个 是因为没有在上面设置通过send命令传递的字段 跟踪器 - 它们仅适用于当前的命中。不更新跟踪器 如果您的应用程序发送任何非网页浏览命中,将导致问题 (例如,事件或社交互动),因为这些命中将被关联 使用跟踪器创建时的页面值。
使用:
ga('set', 'page', location.pathname+location.search+location.hash);
ga('send', 'pageview');
Google Analytics guide on tracking Single Page Applications.
答案 2 :(得分:2)
以下是跟踪哈希浏览量和谷歌分析中的变化的完整代码示例:
(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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-XXXXXXXX-X', 'auto');
ga('send', 'pageview', {'page': location.pathname + location.search + location.hash});
window.addEventListener("hashchange", function (event) {
ga('set', 'page', location.pathname + location.search + location.hash);
ga('send', 'pageview');
})
答案 3 :(得分:1)
当前,Google Analytics(分析)配置会加载Google跟踪代码管理器脚本,并且正在使用 gtag 功能,而不是 ga 对我来说,以前的解决方案会引发错误,因为'ga未定义'。我要做的是使用以下命令修改了初始Google Analytics(分析)配置脚本:
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR-GA-ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'YOUR-GA-ID', {
'page_path': location.pathname + location.hash
});
</script>
要在页面不重新加载或URL(和/或内容)更改而不重新加载javascript的情况下发送内容更改,您必须在脚本中的某处包含以下代码:
window.addEventListener("hashchange", function (event) {
gtag('event', 'pageview', {
'page_path': location.pathname+location.search+location.hash
});
});
您可以看看https://developers.google.com/analytics/devguides/collection/gtagjs/sending-data