lost password link not working for my site
try to check your lost password url in woocommerce settings. There is a section with account endpoints. Check is this two urls adress are the same.
try to check your lost password url in woocommerce settings. There is a section with account endpoints. Check is this two urls adress are the same.
That uses the site admin email address. Changing that will change the email address that is sent.
To reset the passwords for all users use the plugin Bulk Password Reset. It offers a nice interface with some useful options. For example: You can choose the users by their role or add a custom message to the reset email.
You could add a statement to the end that require them to answer a question if they dont have a cookie set and sets a cookie when they do, allowing them access to the site. I’m on my phone but something like this. <?php if($_POST[‘q’] == ‘answer’) { // set cookie } elseif($_COOKIE[‘q’] != ‘cookie’) … Read more
Simply search your templates for post_password_required() and wrap it into if ( ! is_user_logged_in() ).
this should do the job, just add it to functions.php or put in a plugin: add_filter( ‘wp_authenticate_user’, ‘my_authenticate_user’, 10, 2 ); function my_authenticate_user( $user, $password ) { // do whatever you want with the $password variable here return $user; }
No, passwords are stored as a hash in the database. This hash is very difficult to reverse. Here is more information how WP encrypts passwords: http://codex.wordpress.org/Function_Reference/wp_hash_password
You have to control the order of execution. To do that, use the third parameter for add_filter(), the priority. A higher priority equals to later execution. add_filter( ‘the_password_form’, ‘my_password_form’, 9 ); add_filter( ‘the_password_form’, ‘wpse_71284_custom_post_password_msg’, 10 );
Viewing passwords is not possible, because they are not stored anywhere. WordPress stores just the hash of the password, not the password itself. When a user sends her password to authenticate herself, WordPress creates a hash of the sent password and compares that to the stored hash. You should not try to store the passwords … Read more
You cannot recover a password, you can only reset it to something new. We have an article with several ways to do that in the documentation. Pick one of those methods. http://codex.wordpress.org/Resetting_Your_Password