Do not show the form after editing an entry
add_filter(‘frm_show_form_after_edit’, ‘frm_hide_after_edit’, 10, 2); function frm_hide_after_edit($show, $form){ if ( $form->id == 5 ) { //change 5 to the id of your form $show = false; } return $show; }Continue reading