This tutorial will show you how to automatically log in a user when they successfully complete the registration form.
Continue Reading →
Blog
Create a wp-members-pluggable.php file so that it is editable in the plugin editor
WP-Members looks for a wp-members-pluggable.php file when it loads. This is where you can store your plugged versions of the WP-Members pluggable functions. To create the pluggable file, you need do nothing more than create a file named wp-members-pluggable.php and save it to your WordPress plugins folder.
But what if you would like to be able to edit this file within the WordPress admin panel using the plugin editor? This is a way for you to accomplish that. Continue Reading →
Create a sidebar login status and logout link
In some layouts, you may wish to not use the WP-Members sidebar widget for logging users in, but you may still want to display a user’s login status (when logged in) and provide a logout link. Here is how you can do that with a plain text widget. Continue Reading →
Workaround for registration form layout issues
In some cases, you may find some strange wrapping with the default WP-Members registration form. While the best solution is to customize the CSS with a custom stylesheet for your site, there is also a quick workaround that can be applied. Continue Reading →
Create a custom shortcode to display content to registered members based on checkbox value
Suppose that you have a checkbox in your registration form and you want to have a shortcode to display content to users who have a certain value of that checkbox. This tutorial will show you how to create such a shortcode. This concept could also be extended to be any specific value from registration – it is only limited by your imagination. Continue Reading →