ゴーグル アナリティクスの使用 カスタム変数を使用したいと考えています。これは組み込み機能ですが、残念ながら、GA をロードして _trackPageview を呼び出すコードを制御することはできません。
これは、_trackPageview の前に _setCustomVar を呼び出せないことを意味します。
_trackPageview をもう一度呼び出すと、2 つのページ ビューがログに記録されますか?
例えば
// I'm not able to change this order
_gaq.push(['_setAccount', 'UA-XXXXXXXX']);
_gaq.push(['_trackPageview']);
// I'm forced to run this after the first _trackPageview
_gaq.push(['_setCustomVar',1,'name','value']);
_gaq.push(['_trackPageview']);
カスタム変数セットを取得する他の方法はありますか