",
vendor: "Rebel Cheese",
priceMax: "$0.00 USD",
priceMin: "$0.00 USD",
tags: ["Two free cheeses for 1st purchase"],
options: [
{
name: "Title",
values: ["Default Title"]
}
],
images: [
"https://vegan-america.com/cdn/shop/files/two_free_cheeses.png?v=1746920306"
],
variants: [
{
itemVariantId: "46479505096942",
title: "Default Title",
sku: "1301-TWO-FREE",
url: "https://vegan-america.com/products/two-free-cheeses-for-1st-purchase?variant=46479505096942",
image: "https://vegan-america.com/cdn/shop/files/two_free_cheeses.png?v=1746920306",
price: "$0.00 USD",
weight: "1.0009 lb",
metafieldsV2: (function() {
const variantMetafields = [];
return variantMetafields;
})(),
inventoryStatus: (function() {
let inventoryStatus = "";
inventoryStatus = "INVENTORY_NOT_TRACKED";
return inventoryStatus;
})()
}
],
channelId: "29545496814",
locale: "en_US",
metafieldsV2: metafields // Product-level metafields
};
function getProductInfo() {
return productInfo;
}
function loadVariantSelection(variantUrl) {
if(variantUrl.searchParams.has("variant") && productInfo!==null) {
productInfo.itemVariantId = variantUrl.searchParams.get("variant");
let pqaWidget = document.getElementsByTagName("klevu-product-query")
if (pqaWidget.length > 0) {
pqaWidget[0].setAttribute("item-variant-id", variantUrl.searchParams.get("variant"));
}
console.debug("variant selection updated.");
}
}
window.navigation.addEventListener("navigate", (event) => {
console.debug("variant selection changed");
if (document.readyState === "complete") {
loadVariantSelection(new URL(event.destination.url));
} else {
window.addEventListener('load', function onLoad() {
loadVariantSelection(new URL(event.destination.url));
window.removeEventListener('load', onLoad);
});
}
});
