WPSlash

Add WooFood postal code validation on Multistep Checkout Pro

Thursday July 9, 2020

Here is a small snippet to make WooFood compatible with Multistep Checkout Pro.

Just copy and and paste the following code to your functions.php on your child theme.

if ( ! function_exists( 'wpslash_multistep_checkout_postal_code_validation' ) ) {
    function wpslash_multistep_checkout_postal_code_validation( $errors, $fields ) {
		 $options_woofood = get_option('woofood_options');
        $woofood_postalcodes = isset($options_woofood['woofood_postalcodes']) ? $options_woofood['woofood_postalcodes'] : null;
        $woofood_postalcodes = str_replace(" ", "", $woofood_postalcodes);
        $woofood_postalcodes = strtoupper($woofood_postalcodes);
       
        $woofood_current_postcode = $fields['billing_postcode'];
        $woofood_current_postcode = str_replace(" ", "",  $woofood_current_postcode);
        $woofood_current_postcode = strtoupper($woofood_current_postcode);

        $postal_codes_array = explode(",",  trim($woofood_postalcodes));
        
		 if(!in_array(trim($woofood_current_postcode), $postal_codes_array))
        {

          

                       $errors['billing_postcode'] = __( 'Your postcode is outside our delivery area' );


        }
		
		
	
        return $errors;
    }
}
add_action( 'wmsc_custom_validation', 'wpslash_multistep_checkout_postal_code_validation', 10, 2 );

Leave a Comment

Your email address will not be published. Required fields are marked *

Related Articles

Restaurants Tutorials

The Cheapest Food Delivery App for Restaurants Isn’t an App at All — It’s WooFood

When restaurant owners start looking for the cheapest food delivery app, they quickly discover a frustrating truth: most “cheap” delivery platforms aren’t cheap at all. They either take commissions, charge high monthly fees, lock you into their payment processors, or limit how much control you have over your own customer base. But what if the […]
December 1, 2025
Restaurants WooFood

Why “Free” GloriaFood Might Not Be The Best Long-Term Bet For Your Restaurant

When you’re building an online ordering system for your restaurant, it’s tempting to go for a “free” solution. That’s exactly what GloriaFood offers: a ready-to-go, easy-to-install WordPress plugin for online ordering, delivery, and reservations with no setup fees or commissions But “free” doesn’t always mean “best,” especially when you’re serious about owning your brand, your […]
December 1, 2025
Tutorials WooCommerce

How to Choose the Best Food Ordering System for Your Restaurant (And Why WooFood is the Ultimate Solution)

If you’re running a restaurant, café, or fast-food business in today’s digital age, offering online food ordering is no longer optional — it’s essential. Customers expect the convenience of browsing your menu, customizing their orders, and checking out seamlessly from their phone or computer. But with so many plugins and systems available, how do you choose the right […]
April 21, 2025