Exclude selected bundle item from discount
Exclude selected bundle item from discount.
function woo_discount_rules_exclude_cart_item_from_discount_method($exclude_bundled_item, $cart_item){
if(isset($cart_item['bundled_item_id'])){
if(in_array($cart_item['bundled_item_id'], array('55','57','58','59','60','61','62'))){
return true;
}
}
return $exclude_bundled_item;
}
add_filter('woo_discount_rules_exclude_cart_item_from_discount', 'woo_discount_rules_exclude_cart_item_from_discount_method', 10, 2);