Show strikeout price (one by one)
Show strike-through pricing for products individually.
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html){
$html = str_replace("> <", '><br><', $html);
return $html;
}, 10);Show strike-through pricing for products individually.
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html){
$html = str_replace("> <", '><br><', $html);
return $html;
}, 10);