Exclude bundle child product quantity compatible for WPC Product Bundles for WooCommerce
Exclude the quantity of bundle child products for compatibility with WPC Product Bundles for WooCommerce.
add_filter('advanced_woo_discount_rules_include_cart_item_to_count_quantity', function($take_count, $cart_item){
if(isset($cart_item['woosb_parent_id']) && !empty($cart_item['woosb_parent_id'])){
$take_count = false;
}
return $take_count;
}, 100, 2);