Category Tracking
Last updated
Was this helpful?
Was this helpful?
_jts.push({
track: "category",
id: "C8",
name: "Furniture"
});_jts.push({
track: "categoryview"
});// [START] General Pageview
_jts.push({ track: "pageview" });
// [CATEGORY] Category information
_jts.push({
track: "category",
id: "C8",
name: "Furniture"
});
// [PRODUCTS] Products shown under the category
_jts.push({ track: "product", type: "categoryview", id: "1" });
_jts.push({ track: "product", type: "categoryview", id: "2" });
// [CATEGORYVIEW] Category view summary
_jts.push({ track: "categoryview" });
// [SUBMIT] Final submission
_jts.push({ track: "submit" });