Remove woocommerce_product_is_on_sale even before load the discount rule plugin

Instruction to remove the on-sale status before loading the discount rule plugin.

add_action('advanced_woo_discount_rules_before_loaded', function() {
    remove_all_filters('woocommerce_product_is_on_sale');
}, 100);