Create a confirmation field
add_filter(‘frm_validate_field_entry’, ‘your_custom_validation’, 20, 3); function your_custom_validation($errors, $field, $value){ if ($field->id == 31){ //change 31 to the ID of the confirmation field (second field) $first_value = $_POST[‘item_meta’][30]; //change 30 to the ID of the first field if ( $first_value…Continue reading