Support style attribute in span tags
Support style attributes in <span> tags.
add_filter('advanced_woo_discount_rules_allowed_html_elements_and_attributes', function($allowed_html) {
$allowed_html['span'] = array('style' => array(), 'class' => array());
return $allowed_html;
});