Remove woocommerce coupon error message
Prevent specific error messages related to WooCommerce coupons from appearing.
add_filter( 'woocommerce_coupon_error', function($err, $err_code, $coupon){
return '';
}, 30, 3 );Prevent specific error messages related to WooCommerce coupons from appearing.
add_filter( 'woocommerce_coupon_error', function($err, $err_code, $coupon){
return '';
}, 30, 3 );