Skip to content
🎉 You've unlocked free shipping!
You are 9900 away from free shipping.
No more products available for purchase
Products
// Free shipping bar - fix negative amount
function fixFreeShippingBar() {
document.querySelectorAll('.free-shipping__default-message').forEach(function(msg) {
if (msg.textContent.includes('-')) {
msg.textContent = "🎉 You've unlocked free shipping!";
}
});
}
fixFreeShippingBar();
var shippingObserver = new MutationObserver(function() {
fixFreeShippingBar();
});
shippingObserver.observe(document.body, { childList: true, subtree: true });
});