Force Success Message on Update
add_filter(‘frm_success_filter’, ‘change_my_confirmation_method’, 10, 2); function change_my_confirmation_method( $type, $form ) { if ( $form->id == 5 && isset( $_POST ) && isset( $_POST[‘frm_action’] ) && $_POST[‘frm_action’] == ‘update’ ) { //change 5 to the ID of your form $type = ‘message’;…Continue reading