function custom_hide_woocommerce_notice() { if ( is_cart() ) { // 1) Register/enqueue an empty script so we can attach inline code to it wp_enqueue_script( 'custom-hide-notice', '' , [ 'jquery' ], null, true ); // 2) Inline JS: fades out & removes the notice after 3s wp_add_inline_script( 'custom-hide-notice', " document.addEventListener('DOMContentLoaded', function () { setTimeout(function () { var notice = document.querySelector('.woocommerce-notices-wrapper .woocommerce-message'); if ( notice ) { notice.style.transition = 'opacity 0.5s ease-out'; notice.style.opacity = '0'; setTimeout(function () { notice.remove(); }, 500); } }, 3000); }); " ); } } //add_action( 'wp_enqueue_scripts', 'custom_hide_woocommerce_notice' );
No account yet?
Create an Account