I notice that when I filter with gform_search_criteria_entry_list with
Blockquote
$search_criteria[‘field_filters’] = array( ‘key’ => ‘created_by’, ‘operator’ => ‘is’, ‘value’ => $clients );
users see their forms, but if they delete them, cannot get to the trash to empty the trash. It says, “This form does not have any entries in the trash.” and yet there is an indicator above that there are items in the trash. So I have tried using this:
Blockquote
|$search_criteria[‘status’] = [‘active’, ‘trash’];
|$search_criteria[‘field_filters’] = array( ‘key’ => ‘created_by’, ‘operator’ => ‘is’, ‘value’ => |$clients );|
This does not work to allow them to get to the trash. It still says “This form does not have any entries in the trash.” And yet I know there are because I have put them there. Any tips?