document.addEventListener('click', function (e) {
if (e.target.classList.contains('woocommerce-store-notice__dismiss-link')) {
e.preventDefault();
const notice = document.querySelector('.woocommerce-store-notice');
if (notice) notice.style.display = 'none';
}
});
Skip to main content