Created
March 28, 2014 08:58
-
-
Save kloon/9828306 to your computer and use it in GitHub Desktop.
WooCommerce 2.1 Add confirm password field on My Account register form
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 the code below to your theme's functions.php file to add a confirm password field on the register form under My Accounts. | |
add_filter('woocommerce_registration_errors', 'registration_errors_validation', 10,3); | |
function registration_errors_validation($reg_errors, $sanitized_user_login, $user_email) { | |
global $woocommerce; | |
extract( $_POST ); | |
if ( strcmp( $password, $password2 ) !== 0 ) { | |
return new WP_Error( 'registration-error', __( 'Passwords do not match.', 'woocommerce' ) ); | |
} | |
return $reg_errors; | |
} | |
add_action( 'woocommerce_register_form', 'wc_register_form_password_repeat' ); | |
function wc_register_form_password_repeat() { | |
?> | |
<p class="form-row form-row-wide"> | |
<label for="reg_password2"><?php _e( 'Password Repeat', 'woocommerce' ); ?> <span class="required">*</span></label> | |
<input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if ( ! empty( $_POST['password2'] ) ) echo esc_attr( $_POST['password2'] ); ?>" /> | |
</p> | |
<?php | |
} | |
?> |
account register page redirect but the password was not reset
thnx its work for me..
hi,
i found this code very helpfull but my customer complains that it requires very strong passwords. Is there a way to lower the level of security?
thanks
Very useful man thanks!
Its work but the possition at the down how can i move it to password the 2nd password... please help...
The validation message shows up at the top which is great but the field is still outlined in green, not red. Is there a way to mark the field as invalid?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello there,
Your code was very helpful, nevertheless i'm having an issue when loggin out of the account i get a blank page: http://www.membership.megga.be/my-account/
Any idea how to solve this?
Regards,
Louis