Navidium Testing
Introduction
How It Works
// change the configurations below to what you want to test
// you only need to specify configurations that you want
// to behave differently than your current Navidium settings
window._igNavidiumConfig = {
isOn: true,
autoAddToCart: true,
pctFee: 5, // 5 here means 5%
minFee: 3,
}
const res = fetch("/cart/update.js", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
attributes: {
'_igNavidiumConfig': JSON.stringify(window._igNavidiumConfig)
},
}),
})
Last updated