Exclude to remove some woocommerce coupons while disable the coupons (discount rules will work)
Exclude certain WooCommerce coupons from removal when disabling coupons while keeping discount rules active.
add_filter('advanced_woo_discount_rules_exclude_coupon_while_remove_third_party_coupon', function($status, $coupon_code) {
$exclude_coupons = ['example1', 'example2']; //you can add coupons here (with comma separate)
if (in_array($coupon_code,$exclude_coupons)) {
$status = true;
}
return $status;
}, 100, 2);