Remove br tag while doing strikeout for variable products
Remove <br> tags when applying strike-through to variable products.
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html){
$html = str_replace("<br>", ' ', $html);
return $html;
}, 10);