Kcorral app in under development mode, our apps will be available for both android and ios.
Download Our App!
In Development, Our app will be available soon.
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';
}
});