// ===== REDIRECT IF SOMEONE LANDS ON CHECKOUT URL =====
(function() {
var path = window.location.pathname;
if (path.includes('/checkout')) {
window.location.href = "/";
}
})();
// ===== OVERRIDE ALL CHECKOUT BUTTONS SITEWIDE =====
document.addEventListener("DOMContentLoaded", function() {
function blockCheckout() {
var buttons = document.querySelectorAll(
'button[name="checkout"], input[name="checkout"], a[href*="/checkout"], button[data-testid="Checkout-button"]'
);
buttons.forEach(function(btn) {
// Stop normal checkout action
btn.addEventListener("click", function(e) {
e.preventDefault();
e.stopPropagation();
window.location.href = "/";
});
// Kill direct links
btn.setAttribute("href", "/");
});
}
blockCheckout();
// Keep watching for cart drawer / dynamic buttons
setInterval(blockCheckout, 1200);
});
>
Women's Pants
– The Clothing Hideout
Skip to content
Collection:
Women's Pants
- Choosing a selection results in a full page refresh.