Modify the coupon applied message for specific coupons
Modify applied coupon message for specific coupons.
// Add a filter to modify the coupon applied message
add_filter('woocommerce_coupon_message', function ($message, $msg_code, $coupon) {
$awdr_coupons = ['example1', 'example2']; //You can add the coupons here (with comma separate)
if(in_array($coupon->get_code(), $awdr_coupons)){
$message = '';
}
return $message;
}, 10, 3);