Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener("DOMContentLoaded", function () {
// Function to hide the Buy Now button for the specific product ID
function hideBuyNowButton() {
const productElement = document.querySelector("[data-product-id]"); // Adjust if needed
if (productElement && productElement.getAttribute("data-product-id") === "9295314321706") {
const buyNowButton = document.querySelector(".buy-button"); // Adjust selector for your theme
if (buyNowButton) {
buyNowButton.style.display = "none";
console.log("Buy Now button hidden for product ID 9295314321706");
}
}
}
// Run once on page load
hideBuyNowButton();
// Use MutationObserver to handle dynamic content changes
const observer = new MutationObserver(() => {
hideBuyNowButton();
});
// Observe changes in the body (or a more specific parent element)
observer.observe(document.body, { childList: true, subtree: true });
});
Students get 10% off
Simply select your country and enter your student email, then click the button on the email you receive to verify!