Remove errors in the admin
add_filter(‘frm_validate_entry’, ‘remove_errors_in_admin_area’, 20, 2); function remove_errors_in_admin_area($errors, $values){ if ( $values[‘form_id’] == 99 && is_admin() ) { //Change 99 to the ID of your form return array(); } return $errors; }Continue reading