The sidebar login form on this site is customized with the Bootstrap sprites using the method described here. Continue Reading →
filters
Using wpmem_block to block a category
Suppose you want to block any post that is in a certain category. This example shows you how to do that using the wpmem_block filter hook. Continue Reading →
Show optional form fields only on user update
Suppose you have some additional form fields that are not required for registration and you don’t want to show those as part of the registration process; but you would like them to be included when a user updates their registration info. Here is an elegant way of doing that without resorting so hiding the fields with CSS. Continue Reading →
Customize the reCAPTCHA style
For CAPTCHA during the registration process, WP-Members uses reCAPTCHA. The plugin settings allow you to choose from the basic default themes that are offered by reCAPTCHA: red, white, black glass, and clean. But suppose you would like to customize the style that is used? This tutorial is a basic framework to get you started. Continue Reading →
Remove the login form from completed registration
In the case of moderated registration, where the user may not receive access to the site right away, you may find that you want to show the successful registration message, but eliminate the login form that shows below it by default. Here is a method to do that using the wpmem_login_form
filter.