Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
var product = ShopifyAnalytics.meta.product;
window._learnq = window._learnq || [];
window._learnq.push(["track", "Viewed Product", {
ProductName: product.title,
ProductID: product.id,
VariantID: product.selectedVariantId,
URL: window.location.href
}]);
}
if (document.readyState === "complete" || document.readyState === "interactive") {
setTimeout(fireViewedProduct, 800);
} else {
document.addEventListener("DOMContentLoaded", function () {
setTimeout(fireViewedProduct, 800);
});
}
})();