Woocommerce product addon with Be theme

Woocommerce product addon with Be theme

add_filter('woo_discount_rules_remove_event_woocommerce_before_calculate_totals', '__return_true');

if(!function_exists('woo_discount_rules_has_price_override_method')){
    function woo_discount_rules_has_price_override_method($has_price_override, $product, $on_apply_discount, $cart_item){
      if(isset($cart_item['addons']) && !empty($cart_item['addons']) && empty($product->woo_discount_rules_applied)){
        return true;
      }
       return $has_price_override;
    }
}
add_filter('woo_discount_rules_has_price_override', 'woo_discount_rules_has_price_override_method', 10, 4);