1

こんにちは、複数のドメインで Google アナリティクスの目標を追跡するのに助けが必要です。シナリオは次のとおりです。

step 1: website1.com
step 2: website2.com/register/register.php (with membership form)
step 3: website2.com/register/payment/signup.php (with Credit Card payment form)

成功 URL: website2.com/register/success.php

設定方法は次のとおりです。

ウェブサイト 1:

 _gaq.push(['_setAccount', 'UA-#######-##']);
    _gaq.push(['_setAllowLinker', true]);
    _gaq.push(['_setAllowHash', false]);
    _gaq.push(['_trackPageview']);

*また、ユーザーを website2.com に誘導するリンクに _link() メソッドを追加します。

ウェブサイト 2 (メンバーシップ フォーム):

_gaq.push(['_setAccount', 'UA-#######-##']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview', '/register-user']);
_gaq.push(['_trackPageLoadTime']);
_gaq.push(['_setDomainName', location.hostname]);

website2.com (支払いページ) で行き詰まりました

目標を追跡できるように、そこにどのコードを配置しますか。また、メンバーシップ フォームに _linkByPost() メソッドを使用する必要がありますか? 助けてください。

4

1 に答える 1

1

配列の 2 番目の引数は _trackPageviewURL を設定します。多くの場合、両方のページ ヒットが、 と/register-userではなく、/register/register.phpwebsite2.com/register/payment/signup.phpに表示されます。その行を次のように変更します。

_gaq.push(['_trackPageview']);

次の行はデフォルトの機能を複製しており、削除できます。

_gaq.push(['_setDomainName', location.hostname]);

次の行は推奨されておらず、削除できます。

_gaq.push(['_trackPageLoadTime']);
于 2012-10-18T18:00:02.387 に答える