Display only max price in product page strikeout for variable productsDisplay only max price in prod
Display the highest 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($max_price);
return $html;
}, 10, 3);