Remove Apply Tax In Fee function

Remove the function that applies tax in a fee.

add_action('plugins_loaded', function (){
    if(class_exists('\Wdr\App\Router')){
        remove_filter('advanced_woo_discount_rules_additional_fee_amount', array(\Wdr\App\Router::$manage_discount, 'applyTaxInFee'));
    }
});