My account

Login

Register

A link to set a new password will be sent to your email address.

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

Shopping Cart
// Wait for the DOM to be ready document.addEventListener('DOMContentLoaded', function() { // Get the element with the specified class var storeNotice = document.querySelector('.woocommerce-store-notice.demo_store'); // Check if the element exists before trying to hide it if (storeNotice) { // Hide the element storeNotice.style.display = 'none'; } });