Validation Of Checkout Pincode or Zipcode Field in Woocommerce

You can limit the zip code field digits to validate it properly. If in your country zip code is of minimum 4, 5, or 6 digits then you can use woocommerce checkout process function add_action code to validate it for correct zip code entry by your customers. Let’s have a look.

Here is my code, Add below code at the end of your theme’s functions.php file of your active child theme (or theme) and Save the file to redirect the visitors to the custom-designed landing page of your choice.

In this code validate the zip code field for at least 6 digit number. If the entered number is less than or greater than 6 digits then it will show the error message and if it is correct it will let the checkout process complete. You can change the number to 4,5,6 or any other number depending on your country’s zip codes.

add_action('woocommerce_checkout_process', 'custom_checkout_field_process');
  
function custom_checkout_field_process() {
    global $woocommerce;
  
    // Check if set, if its not set add an error. This one is only requite for companies
    if ( ! (preg_match('/^[0-9]{6}$/D', $_POST['billing_postcode'] ))){
        wc_add_notice( "Incorrect Zip code! Please enter correct number."  ,'error' );
    }
}
Scroll to Top