Password Reset Issues
-
I have a couple of issues with the password reset functionality and was wondering if someone could assist?
1. The password reset email is sending out a password reset link without a colon (:) between the https and the // which is generating an error. The email reset link is being automatically generated using the reset password link shortcode so I am unsure why the colon is missing. If I manually copy the link address and add the colon in it works fine. How can I change this?
2. When accessing the correct password reset link it takes you through to the new password and confirm password form. The confirm password box has the words “confirm password” inside of it despite the fact I do not want it to be displayed. I have the same issue with the registration form and had to use a piece of code to remove it which I found online but cant find a piece of code to remove it from the password reset form. Can anyone assist?
The code I used to remove it from the registration form was:
add_filter( "um_confirm_user_password_form_edit_field", "my_um_remove_placeholder", 10, 2 ); function my_um_remove_placeholder( $output, $set_mode ) { if( $set_mode == 'register' ) { $output = str_replace( 'placeholder="Confirm Password"', 'placeholder=""', $output ); } return $output; }
Any assistance is appreciated.
- The topic ‘Password Reset Issues’ is closed to new replies.