Filter by current user
add_filter(‘frm_csv_where’, ‘limit_csv_to_current_user’, 10, 2); function limit_csv_to_current_user($where, $args){ if ( $args[‘form_id’] == 19 ) {// Change 19 to the ID of your form $current_user = wp_get_current_user(); $where[‘form_id’] = 19;// Change 19 to the ID of your form again $where[‘user_id’] = $current_user->ID;…Continue reading