1

我们公司有一个“流量来源”报告,显示“搜索关键字 - 全部”按转换变量分解,该变量使用 crossVisitParticipation 和 channelManager 插件/功能从搜索引擎“堆叠”关键字。转换变量和引用 url 正确传输到 Omniture(我通过 SC 调试器验证了这一点)。

问题是当我们选择“搜索”指标时,值显示为“N/A”。为什么会发生这种情况?我们有什么配置错误吗?

这是我们报告的照片:

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

这是一个类似的报告,其中包含按页排列的关键字堆栈。它有同样的问题。

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 回答