Display only least price in product page strikeout for variable products
Display only the lowest price in strike-through for variable products on product pages.
add_filter('advanced_woo_discount_rules_format_sale_price_range', function($html, $min_price, $max_price){
$html = wc_price($min_price);
return $html;
}, 10, 3);