在将虚拟页面视图发送到Google Analytics(分析)时动态设置页面值

时间:2019-08-13 20:16:55

标签: google-analytics

我想在将虚拟综合浏览量发送到Google Analytics(分析)之前动态设置页面路径。

我正在使用wordpress多站点,但是我想这在其他平台上是个问题。例如,我有一堆网站

  • rooturl.com/somesite1 /
  • rooturl.com/somesite2 /
  • rooturl.com/somesite3 /

当我发送虚拟综合浏览量

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

0 个答案:

没有答案