1

当社には、crossVisitParticipation および channelManager プラグイン/関数を使用して検索エンジンからのキーワードを「スタック」する変換変数によって分類された「検索キーワード - すべて」を示す「トラフィック ソース」レポートがあります。変換変数と参照 URL が正しく Omniture に送信されます (SC Debugger で確認しました)。

問題は、「検索」メトリックを選択すると、値が「N/A」と表示されることです。なぜこれが起こるのでしょうか?何か間違った設定がありますか?

これが私たちのレポートの写真です:

http://i.imgur.com/79x3g.jpg

これは、stack by pages というキーワードを使用した同様のレポートです。同じ問題があります。

http://i.imgur.com/iQhbK.jpg

変換変数を設定するコードの JavaScript スニップを次に示します。

var o=s.channelManager(false);
if(typeof o != 'undefined' && o.keyword != 'n/a' && o) {
s.eVar24=s.crossVisitParticipation(o.keyword,'s_kw','90','9',' > ','event4,purchase,1'); 
}

ありがとう!

4

1 に答える 1

1

The issue is exactly what Adam Greco wrote up there. The 'Searches' metric is the same as the instances metric. Neither of which are subrelated, which means the metric relates only to the conversion variable it is set against.

So when you do a breakdown on your Search Keywords by the Keyword Stack the Searches metric doesn't apply to the Stack values on rows below - thus n/a, or 'not applicable'.

Try adding the Visits metric instead.

于 2012-10-31T01:15:16.853 に答える