You can add an extra help message box, on the reset password screen:
with the following:
/**
* Display an extra help message box on the 'reset password' screen
*
* @link http://wordpress.stackexchange.com/a/204429/26350
*/
add_action( 'validate_password_reset', function( $errors )
{
add_action( 'login_message', function( $message )
{
// Modify this help message box to your needs:
$mybox = sprintf(
'<br/><p class="message reset-pass">%s</p>',
__( 'Some help text here!' )
);
return $message . $mybox;
} );
} );
Here we add the extra message box by using the login_message
filter. It should only show up on the reset password screen, because we hook it into the validate_password_reset
action.
Related Posts:
- I want to disable E-Mail verifcation / activation when a user signs up for my WordPress site
- Problem with logging in WP users automatically
- How do I force “users must be registered and logged in” on subsites?
- reset password link redirect to login page
- Password reset – Disabled for LDAP accounts
- Correct passwords keep appearing as incorrect
- Disabling standard registration login with username/email and password?
- Is there anyway to get the inputted password string from the login form?
- wordpress login without password just email address (NO 2 factor authentication with email)
- Temporally disable password to login with empty password?
- Problem in auto login after registration
- Login form does not store/remember/suggest users password
- How to invalidate `password reset key` after being used
- Chosen user password in registration is not being accepted on Login
- Login user after registration programmatically
- How can I redirect user after entering wrong password?
- Separate registration and login for different roles
- SSO / authentication integration with external ‘directory service’
- How to prefill WordPress registration with social details
- Check for correct username on custom login form
- Custom login form
- Prevent wp_login_form() from redirecting to wp-admin when there are errors
- How do I change the language of only the login page?
- Disable WordPress 3.6 idle logout / login modal window / session expiration
- Woocommerce registration page [closed]
- Avoid to load default WP styles in login screen
- WordPress registration message
- How to fake a WordPress login?
- How build a custom login/register form with error handling?
- Can not login with correct username and password
- How to remove the WordPress logo from login and register page?
- How can I add a custom script to footer of login page?
- Login email after registration never sent or received
- How to keep always logged in development environment
- Add Confirm Password field in wp-login.php Password Reset page
- custom login page redirect to logged in user profile page
- How do I check if a post is private?
- How can I modify the default reset (lost) password email text?
- Receiving “This content cannot be displayed in a frame” error on login page
- Action wp_login_failed not working if only one field is filled out
- How can I do customizations on login, registration and password recovery forms?
- Give visitor access to password protected page/post via external script
- Send reset password link to user from custom lost password form
- What hooks should I use for pre-login and pre-registration actions?
- WordPress Login Footer URL
- Remove built in wordpress login and use only google auth
- Change Login Page for a Multisite Subsite
- Redirect user after login/registration globally
- Positioning the “Lost your password?” and “← Back to Site”
- send users logging in from wp-login.php directly to home page of site, rather than dashboard
- How can I retrieve the username and password from my WordPress installation?
- How to get login data (session) outside WordPress?
- password protect individual pages
- Is there any good tutorial to write custom login, registration and password recovery forms? [closed]
- Change register form action url
- Is it possible a one click user registration with Facebook or Twitter (or other Social Networks)?
- Register/Login using only phone number?
- How to determine if a user has not changed default generated password
- Add class to input form in login form
- Allow access to a page for admins only
- Customizing login error messages
- Customizing the WordPress login form
- Restricting frontend acess based on user role otherwise redirect to login form
- Right practice to edit WP reset password email
- Force users to register in order to view website [duplicate]
- how to restrict user login whenever if a user puts on hold by editing wp-login action?
- deny IPs from wp-login using .htaccess
- auto login after registeration for wp-members plugin
- Passing username to login screen
- Login error redirecting to wp-login page
- How To Change Wp Register/Login URL Permanently To My Custom Page
- How can I prevent my custom form from redirecting to wp-login?
- Private page protected with username and password
- How do I replace “Username” in the WordPress login form?
- Password protect media attachment – share across guests
- Custom Login iframe doesn’t work
- How to Get Logged-in to “Remote WP Site” from my local script (in Same Browser)?
- Replace dash with space in username on login
- Autologin only working the second time
- replace wp-login.php login forms via a hook & use custom forms with wp-login form validation
- How to modify the action attribute of the wp-login.php?action=register form?
- Why wp_update_user doesn’t update user_activation_key on users with apostrophes in their email?
- Forgot Password/ Password Reset Page does not exist
- Forgot password needs to redirect from wp-login to a custom page
- Auto login between word press subdomain and a .net website
- Deep customization of wp-login.php
- Login form doesn’t log in
- Get the url of custom login page in the registration page
- How to change wordpress Log In text
- WordPress error on log out ‘Not Permitted’ and can’t log out
- Redirect wp-login
- By registering always make uppercase the first letter of the login
- Show reCaptcha on Custom Frontend Login & Register Form [closed]
- Best option to implement external register/login to WP from self-made API
- Auto Login After Registration
- How can I change the email sender name from wordpress to (myblogname) on the “lost password” email?
- Disable all other page except index,register,login till user login
- Is wp_login_form secure on a non secure page?
- How to password-protect everything except the logo
- Is the login encrypted before it is sent? If so how to do I encrypt it the same way?