如何全方位追踪品类、子品类以及产品详情?
如何跟踪用户在 Omniture sitecatalyst 中查看的类别、子类别和产品详细信息?
How to track category, subcategory and product details that is being viewed by a user in Omniture sitecatalyst?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您正在谈论将产品分组等,则 Omniture 的最佳实践方法是捕获单个产品(例如 SKU),然后通过 SAINT 分类管理这些产品的分组。
基本上,这是一个文本文件查找,其中包含您的 SKU,以及您想要分配给每个 SKU 的各种类别等。您可以将其与 SiteCatalyst GUI 同步。
这比在代码触发时尝试记录这些分组效果更好。
If you are talking about groupging products into categories and so on, the best practice method with Omniture is to capture the individual products (e.g. SKU), and then manage the groupings of these through SAINT Classifications.
Basically this is a text file lookup which has your SKUs, along with the various categories etc you want to assign to each. You synchronise this with the SiteCatalyst GUI.
This works better than trying to record these groupings at the time the code fires.
您的帐户应配置站点部分和站点子部分(可能还有子子部分)属性。您应该使用您的类别填充站点部分(我的配置中的 s.prop2),并使用您的子类别填充站点子部分(我的配置中的 s.prop3)。
您可以在 s.products 变量中发送产品详细信息,格式如下:
s.products="Category;Product;Quantity;Price[,Category;Product;Quantity;Price]"
当多个产品时是一次性购买的,您应该用逗号分隔每个数据集。
Your account should be configured with Site Section and Site Sub Section (and perhaps sub-sub section) properties. You should populate Site Section (s.prop2 in my configuration) with your category, and Site Sub Section (s.prop3 for me) with your subcategory.
You can send a product details in the s.products variable in the format of:
s.products="Category;Product;Quantity;Price[,Category;Product;Quantity;Price]"
When multiple products are purchased at once, you should separate each data set by a with a comma.
还有另一种跟踪类别、子类别和子子类别的方法。我们可以使用 evar4、evar5 和 evar6。
如果您位于父类别中,则所有这三个变量都具有相同的值。
如果您位于子类别中,则 evar4 保存父类别,evar5 和 evar6 保存子类别名称。
如果您位于子子类别中,则 evar4、evar5 和 evar6 保存第一、第二和第三级类别名称。
There is another way of tracking category, sub category and sub sub category. We can use evar4, evar5 and evar6.
If you are in parent category, then all these three vars have same value.
if you are in sub category then evar4 holds parent category, evar5 and evar6 holds sub category name.
if you are in sub sub category then evar4, evar5 and evar6 holds first, second and third level of category name.