Exclude bundle parent product quantity compatible for WPC Product Bundles for WooCommerce
Exclude bundle parent product quantities (compatibility for 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_ids']) && !empty($cart_item['woosb_ids'])){
$take_count = false;
}
return $take_count;
}, 100, 2);