Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @kishorekrishnan

    You can add the following code to deprecate and replace the hook wc_add_to_cart_message :

    add_filter( 'wc_add_to_cart_message_html', 'empty_wc_add_to_cart_message');
    function empty_wc_add_to_cart_message( $message, $products ) { 
        return ''; 
    }; 

    You can read more on this here .

    I hope this helps!

    Hi,

    It’s been a while since we heard from you, so I’m marking this thread resolved. Hopefully, you’ve been able to resolve this, but if you haven’t, please open up a new topic and we’ll be happy to help out.

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to hide woocommerce message alerts once they show up?’ is closed to new replies.