Display rule in table even if condition doesn't matches
Display rules in a table even if conditions do not match.
/**
* @return boolean
* */
function woo_discount_rules_rule_matches_to_display_in_table_method($matches, $product, $rule){
//Check condition as required and return boolean value true/false
}
add_filter('woo_discount_rules_rule_matches_to_display_in_table', 'woo_discount_rules_rule_matches_to_display_in_table_method', 10, 3);