Disable the discount table for specific rules

Disable the discount table for specific rules.

add_filter( 'advanced_woo_discount_rules_hide_specific_rules_in_bulk_table', function($status, $rule_id, $rule, $product){
    $exclude_rule_id = array(10, 12);//Here we need to enter rule id
    if(in_array($rule_id, $exclude_rule_id)){
        $status = true; //Set as true if we want to disable discount table in front end.
    }

    return $status;
}, 10, 4);