如何全方位追踪品类、子品类以及产品详情?

发布于 2024-11-06 10:06:12 字数 55 浏览 1 评论 0原文

如何跟踪用户在 Omniture sitecatalyst 中查看的类别、子类别和产品详细信息?

How to track category, subcategory and product details that is being viewed by a user in Omniture sitecatalyst?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

天邊彩虹 2024-11-13 10:06:13

如果您正在谈论将产品分组等,则 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.

烂柯人 2024-11-13 10:06:13

您的帐户应配置站点部分和站点子部分(可能还有子子部分)属性。您应该使用您的类别填充站点部分(我的配置中的 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.

别把无礼当个性 2024-11-13 10:06:13

还有另一种跟踪类别、子类别和子子类别的方法。我们可以使用 evar4、evar5 和 evar6。

evar4= "parent category";

evar5="sub category";

evar6="sub sub category";

如果您位于父类别中,则所有这三个变量都具有相同的值。
如果您位于子类别中,则 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.

evar4= "parent category";

evar5="sub category";

evar6="sub sub category";

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文