Start your code here add_filter( 'frm_entries_list_query', 'set_listed_entries_journal', 10,2 );And here's where I got it from: https://formidableforms.com/knowledgebase/frm_entries_list_query/
function set_listed_entries_journal( $where, $atts ) {
$form_id = 3; // set to your form id
if ( $atts['form_id'] == $form_id && ! current_user_can('administrator') ) { // who should not see the form?
$where['it.id !'] = array( 4, 6 ); // replace 4, 6 with your entry ids
}
return $where;
}
Please login or Register to submit your answer