Tag: wp-filters
-
Send new user activation link with manual admin approval
This post describes a very similar process to what is described in the tutorial titled “Send new user an activation link in the new registration email.” The twist on this version is that this will send the user an email requesting that they confirm their email address, then it will send the admin a notification…
-
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,…
-
Reset password with just email
NOTE: if you are using version 2.9+, there is a new set of code snippets using some new filter hooks that make this process easier. One of the requests I get most often is how can I change the plugin to have the password reset only require the user to give their email address. This…
-
A random word and number combination for passwords
One of the earliest code snippets provided on this site was one that discussed how to create an easier random password. This post discussed two examples: one that showed how to create a random password of only upper and lower case letters and one that always set a specific word. I understand that some sites…
-
Add a sortable date user registered column to the Users > All Users page
If you manage a site that has a lot of registrations, sometimes it is helpful to show the date the user registered as a custom column in the WordPress admin page Users > All Users. I have shown in another post how you can add that data as well as other data to this table.…