Validation errors on Android
-
Hi there,
I’m having issues with validating the fields on the billing address page. Validation works well on iOS and on a regular Windows pc, but it shows errors on all fields when using an Android device. The errors are all the same: “xxx is a reguired field”, where ‘xxx’ is:
– First name
– Last name
– Address
– City
– Postal codeI’m using a child theme and my functions.php looks like this:
<?php
//
// Recommended way to include parent theme styles.
// (Please see https://codex.www.ads-software.com/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
//
// Your code goes below
//Appreciate the help!
- The topic ‘Validation errors on Android’ is closed to new replies.