Skip to content
document.addEventListener("DOMContentLoaded", function () {
// ✅ Activation: 2 Sept 2025, 12:00 AM Nigeria (WAT, UTC+1)
// Equivalent: 1 Sept 2025, 11:00 PM UTC / 7:00 PM Baltimore (EDT, UTC-4)
const activationDate = new Date("2025-09-01T23:00:00Z").getTime();
const now = new Date().getTime();
if (now >= activationDate) {
const style = document.createElement("style");
style.innerHTML = `
/* Disable ALL buttons, links, checkout, payment etc. */
button,
input[type="submit"],
a,
.shopify-payment-button,
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded,
.cart__checkout-button,
.btn,
.button,
.ProductForm__AddToCart {
pointer-events: none !important;
opacity: 0.5 !important;
cursor: not-allowed !important;
}
`;
document.head.appendChild(style);
console.log("✅ All buttons disabled at " + new Date().toLocaleString());
} else {
console.log("⏳ Waiting for activation time...");
}
});