Prevent redirect action when updating entry
add_filter(‘frm_success_filter’, ‘prevent_redirect_action’ , 10, 2); function prevent_redirect_action( $type, $form, $action ) { if ( $form->id != 5 || ‘update’ != $action ) { return $type; } if ( ‘redirect’ == $type ) { return ‘message’; } if ( is_array( $type…Continue reading