我想在将虚拟综合浏览量发送到Google Analytics(分析)之前动态设置页面路径。
我正在使用wordpress多站点,但是我想这在其他平台上是个问题。例如,我有一堆网站
当我发送虚拟综合浏览量
时 gaplusu('send', 'pageview', '/exit');
GA中的综合浏览量显示为/ exit,但我需要将其显示为/ somesite1 / exit或/ somesite2 / exit
我不确定如何将网站信息或任何其他动态信息传递给gaplusu函数
以下是我当前正在使用的功能:
jQuery(document).ready(function()
{
//gravityform lead capture
jQuery('#gform_submit_button_8')
.click(function ($) {
gaplusu('set', 'title', 'Purchase Exit');
gaplusu('send', 'pageview', '/exit');
});
});
GA中的综合浏览量显示为/ exit,但我需要将其显示为/ somesite1 / exit或/ somesite2 / exit