1

ブログ サイトの各作成者のヒット数を記録しようとしています。

ga('send', 'pageview'); (in the header with the ga code to track each page)
ga('send', 'pageview', { 'dimension1': 'William' }); (only on blog pages, I want to record the hits of each author)

残念ながら、サイトのテンプレートが原因で、使用ga setしてからページビューを送信することはできません。

ページの読み込みごとに 2 つのヒットが発生するため、Google アナリティクスに誤ったデータが表示されますか?

4

1 に答える 1

1

はい、間違った二重のページ ビューが表示されます。ただし、コードをif elseモードに入れることはできますか?

if(currentPage != 'blogpage') //put your conditions identifying if it's blog or not
{
     ga('send', 'pageview'); (in the header with the ga code to track each page)
}else
{
    ga('send', 'pageview', { 'dimension1': 'William' }); (only on blog pages, I want to record the hits of each author)
}
于 2014-05-06T09:26:53.543 に答える