Remove non-breaking space in strikeout
Instruction to remove non-breaking spaces from strikeout prices.
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html){
$html = str_replace(" ", '', $html);
return $html;
}, 10);Instruction to remove non-breaking spaces from strikeout prices.
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html){
$html = str_replace(" ", '', $html);
return $html;
}, 10);