Check each value from checkbox
add_filter(‘frm_filter_where_val’, ‘frm_search_multiple_values’, 8, 2); function frm_search_multiple_values($where, $args){ if ( $args[‘display’]->ID == 205 and in_array( $args[‘where_opt’], array( 82, 83, 84 ) ) ) { $where = explode(‘, ‘, $where); } return $where; }Continue reading