So I am trying to get rid of the phone validation.
I did try adding a extra phone format but then it just compared the regex of the one that I added additional to the international one.
I want customers to give in any phone number they want with +41 or just 079.
Now I removed/overridden the validation code in a plugin. But for some reason it still validates for a International +99 code. Is there something I am overseeing?
add_filter( 'gform_field_validation', 'disable_international_phone_validation', 10, 4 );
add_filter( 'gform_phone_formats', 'ch_phone_format', 10, 2 );
function ch_phone_format( $phone_formats ) {
$phone_formats['ch'] = array(
'label' => 'ch',
'mask' => false,
'regex' => false, // '/^(\d{10})|(\d{11})|(\d{3}\s?\d{3}\s?\d{2}\s?\d{2})$/',
'instruction' => false, //'Bitte geben Sie eine gültige Schweizer Telefonnummer ein, z.B. 079 123 45 67, 0791234567 oder +41 79 123 45 67',
);
return $phone_formats;
}
add_filter( 'gform_field_validation', 'disable_international_phone_validation', 10, 4 );
function disable_international_phone_validation( $result, $value, $form, $field ) {
if ( $field->type == 'phone' ) {
$result['is_valid'] = true;
}
return $result;
}
add_filter( 'gform_pre_render', 'remove_phone_field_format');
add_filter( 'gform_pre_validation', 'remove_phone_field_format');
function remove_phone_field_format( $form ) {
foreach ( $form['fields'] as &$field ) {
if ( $field->type == 'phone' ) {
$field->phoneFormat = '';
}
}
return $form;
}