Tag: filters
-
Add Really Simple CAPTCHA to the Login Form
The question about integrating CAPTCHA into the login is coming up more frequently. With the wpmem_login_form_rows filter, the login form is infinitely flexible so you can add additional elements to the form. I have put together an example of integrating the Really Simple CAPTCHA process into the current login process. The process is relatively simple,…
-
Creating a login link with redirect back to the original page
Often times, the WP-Members plugin may be used in a theme or other situation where there is already a log in link. A lot of these types of default log in links direct to the main WP login. But they often have the nice feature of redirecting back to the referring page. This example will…
-
Add current password confirmation to change password form
Recently, a question came up about adding an additional field to the change password form for the user to confirm their current password as a requirement of changing the password. Adding the extra field is very easy with a filter. The trickier part is to handle validating the new form input and providing an error message.…