こんにちは、複数のドメインで 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() メソッドを使用する必要がありますか? 助けてください。