mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
146 B
Text
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 '';
|
|
}
|