Advertisement
shuvocse

Hide Added to Cart message in Woocommerce

Nov 18th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_filter( 'wc_add_to_cart_message_html', 'empty_wc_add_to_cart_message');
  2. function empty_wc_add_to_cart_message( $message, $products ) {
  3.     return '';
  4. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement