Disable woocommerce_get_price_html event from other plugins

Prevent interference from other plugins by disabling the woocommerce_get_price_html event.

add_action('advanced_woo_discount_rules_after_initialize', function (){
    if(class_exists('\Wdr\App\Router')){
        remove_all_filters('woocommerce_get_price_html');
        
        add_filter('woocommerce_get_price_html', array(\Wdr\App\Router::$manage_discount, 'getPriceHtml'), 100, 2);
        add_filter('woocommerce_get_price_html', array(\Wdr\App\Router::$manage_discount, 'getPriceHtmlSalePriceAdjustment'), 9, 2);
    }
});