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(">&nbsp;<", '><br><', $html);
	return $html;
}, 10);