Your cart is currently empty!
Category: Tips and Tricks
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…
Use an invitation code with the PayPal subscription extension
When running the PayPal subscription extension, you might have some users you want to give a free account to. Or you might want to offer a discount to users with a specific code. Here is are some code snippets that will allow you to validate a promotion code in the registration form and if it…
Only Allow Registration From Specified Email Domains
One really fun thing about developing, maintaining, and supporting WP-Members over the years is putting together unique customizations and code snippets based on user requests that I never thought of. It shows how truly versatile the plugin is and that there is a very diverse user base. This particular snippet comes from a user request…
Workaround for WP-Members front end login when using a CAPTCHA device on the WP login form
If you using a plugin to implement a CAPTCHA on the WordPress login form (the backend login, wp-login.php), you will find that this is not always compatible with the WP-Members front end login. WP-Members includes WP’s native hooks such as login_form for broad compatibility with plugins that may add additional authentication to the login. But…