Post Code Validation Fails
-
Post code validation fails regularly for UK, Netherlands, Swiss addresses.
I’ve tried removing validation altogether with this code, and it tests fine:
/** * Remove Zip Code Validation * Thanks to BusinessBloomer.com (https://businessbloomer.com/woocommerce-disable-postcodezip-field-checkout-page/) */ add_filter( 'woocommerce_default_address_fields' , 'bbloomer_override_postcode_validation', 99 ); function bbloomer_override_postcode_validation( $address_fields ) { $address_fields['postcode']['validate'] = false; return $address_fields; }
But users in those countries are still seeing the problem.
Here are some screen caps:
When I enter the exact info shown on these screen caps, validation doesn’t fail.
Thanks in advance for any help you can provide!
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Post Code Validation Fails’ is closed to new replies.