In WooCommerce, I have added extra field to account registration form:
// 1. ADD FIELDS
add_action( 'woocommerce_register_form_start', 'add_woo_account_registration_field' );
function add_woo_account_registration_field() {
?>
<p class="form-row form-row-first">
<label for="reg_billing_account_number"><?php _e( 'Ship to/ Account number', 'woocommerce' ); ?> <span class="required">*</span></label>
<input type="text" class="input-text" name="billing_account_number" id="reg_billing_account_number" value="<?php if ( ! empty( $_POST['billing_account_number'] ) ) esc_attr_e( $_POST['billing_account_number'] ); ?>" />
</p>
<div class="clear"></div>
<?php
}
// 2. VALIDATE FIELDS
add_filter( 'woocommerce_registration_errors', 'validate_woo_account_fields', 10 );
function validate_woo_account_fields( $errors, $username, $email ) {
if ( isset( $_POST['billing_account_name'] ) && empty( $_POST['billing_account_number'] ) ) {
$errors->add( 'billing_account_number_error', __( '<strong>Error</strong>: account number is required!', 'woocommerce' ) );
$fields['billing_account_number']['maxlength'] = 6;
}
return $errors;
}
// 3. SAVE FIELDS
add_action( 'woocommerce_created_customer', 'save_woo_account_fields' );
function save_woo_account_fields( $customer_id ) {
if ( isset( $_POST['billing_account_number'] ) ) {
update_user_meta( $customer_id, 'billing_account_number', sanitize_text_field( $_POST['billing_account_number'] ) );
update_user_meta( $customer_id, 'account_number', sanitize_text_field($_POST['billing_account_number']) );
}
}
But the field validation doesn't work as the user still can register without filling it.
What I am doing wrong?
Also when customer register I would like to see this field on the admin user page.
Any help is appreciated.
