Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Balakrishnan-flycart/cfccde4e92fe02b3799b0f67baee629e to your computer and use it in GitHub Desktop.
Save Balakrishnan-flycart/cfccde4e92fe02b3799b0f67baee629e to your computer and use it in GitHub Desktop.
Discount Rules v2: Display only max price in product page strikeout 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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment