Sale price range customization
Customize the sale price range.
add_filter('advanced_woo_discount_rules_format_sale_price_range', function ($html, $min_price, $max_price, $original_html){
$args['price_format'] = '%2$s';
$html = wc_price($min_price, $args) . "-" . wc_price($max_price);
return $html;
}, 100, 4);