Last active
April 20, 2022 15:49
-
-
Save woogists/ae50c5ed19078d949b499e0f91cc6839 to your computer and use it in GitHub Desktop.
[WooCommerce Blocks] Check if the billing address contains a house number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'woocommerce_store_api_checkout_update_order_from_request', 'woo_blocks_address_field_validation', 10, 2); | |
function woo_blocks_address_field_validation( WC_Order $order, $request ) { | |
$billing_address = $order->get_address('billing')['address_1']; | |
if ( $billing_address && ! preg_match( '/[0-9]+/', $billing_address ) ) { | |
throw new Exception( 'Your billing address must contain a house number!' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment