Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/ae50c5ed19078d949b499e0f91cc6839 to your computer and use it in GitHub Desktop.
Save woogists/ae50c5ed19078d949b499e0f91cc6839 to your computer and use it in GitHub Desktop.
[WooCommerce Blocks] Check if the billing address contains a house number
<?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