Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-add-to-cart-message.txt
2019-06-20 21:58:50 -06:00

5 lines
146 B
Text

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