woocommerce_after_save_address_validation, $user_id, $address_type, $address, $customer
woocommerce_after_save_address_validation, $user_id, $address_type, $address, $customer
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_after_save_address_validation, $user_id, $address_type, $address, $customer') is found 1 times:
- /includes/class-wc-form-handler.php line 270
* @param string $address_type Type of address; 'billing' or 'shipping'. * @param array $address The address fields. * @param WC_Customer $customer The customer object being saved. */ do_action( 'woocommerce_after_save_address_validation', $user_id, $address_type, $address, $customer ); if ( 0 < wc_notice_count( 'error' ) ) { return; } $customer->save();