Exclude bundle child products from apply discounts compatible for WPC Product Bundles for WooCommerc
Exclude bundle child products from discount applications (compatibility for WPC Product Bundles for WooCommerce).
add_filter('advanced_woo_discount_rules_calculate_discount_for_cart_item', function ($calculate_discount, $cart_item){
if(isset($cart_item['woosb_parent_id']) && !empty($cart_item['woosb_parent_id'])){
$calculate_discount = false;
}
return $calculate_discount;
}, 100, 2);
add_filter('advanced_woo_discount_rules_process_cart_item_for_cheapest_rule', function($calculate_discount, $cart_item){
if(isset($cart_item['woosb_parent_id']) && !empty($cart_item['woosb_parent_id'])){
$calculate_discount = false;
}
return $calculate_discount;
}, 100, 2);