Display only least price with prefix in product page strikeout for variable products
Display the lowest price with a strikeout on the product page for variable products.
add_filter('advanced_woo_discount_rules_format_sale_price_range', function($html, $min_price, $max_price){
$html = wc_price($min_price);
return "From ".$html;
}, 10, 3);