User input form field value validation ninja forms 3
I'm having a problem with custom form field validation. I have installed Ninja form 3 in the latest wp-install. The problem is that I am not clear on which hook to use. I have looked at the documentation on their site and tried several thing but no results.
Here's what I'm trying to do: there is a field in the form where the user must give his member-id that value. I want to compare with data from a second database before the form is submit and when the id does not match throw an error-message.
I have tried the filter ninja_forms_submit_data but that gives error messages if I'm using get_field_value method. Can anyone help me in the right direction. Below the code that i have tried. Thanks in advance. M
add_filter( 'ninja_forms_submit_data', 'form_field_verification_pre_process');
function form_field_verification_pre_process( $form_data){
$mydb = new wpdb('****','****','****','****');
$rows = $mydb-get_results("select title from ****_content");
$row1 = array_column($rows, 'title');
foreach(array_values($row1) as $key) :
$row1[$key] = 1;
endforeach;
foreach( $form_data[ 'fields' ] as $field ) { // Field settigns, including the field key and value.
if( 'id_vispas_nummer' != $field[ 'key' ] ) continue; // Check the field key to see if this is the field that I need to update.
$user_value = $field[ 'value' ] ; // Update the submitted field value.
}
if(isset($row1[$user_value]) ){
$ninja_forms_processing-add_error('id_vispas_nummer', 'Vispasnummer komt niet voor in ons ledenbestand', 'id_vispas_nummer');
}
return $form_data;
}
Also tried to use the Hook below
add_action( 'ninja_forms_after_submission', 'form_field_verification_pre_process');
function form_field_verification_pre_process( $form_data){
global $ninja_forms_processing;
$mydb = new wpdb('****','****','****','****');
$rows = $mydb-get_results("select title from ****_content");
$row1 = array_column($rows, 'title');
foreach(array_values($row1) as $key) :
$row1[$key] = 1;
endforeach;
foreach( $form_data[ 'fields' ] as $field ) { // Field settigns, including the field key and value.
if( 'id_vispas_nummer' != $field[ 'key' ] ) continue; // Check the field key to see if this is the field that I need to update.
$user_value = $field[ 'value' ] ; // Update the submitted field value.
}
if(isset($row1[$user_value]) ){
$ninja_forms_processing-add_error('id_vispas_nummer', 'Vispasnummer komt niet voor in ons ledenbestand', 'id_vispas_nummer');
}
}
Topic plugin-ninja-forms forms Wordpress
Category Web