Current Release Candidate: RC 4
WP-Members 2.8.2 is both a feature release and a fix release. Continue Reading →
Home of WP-Members, The Original WordPress Membership Plugin
Chad Butler · ·
Current Release Candidate: RC 4
WP-Members 2.8.2 is both a feature release and a fix release. Continue Reading →
Chad Butler · ·
I am always nervous about releasing updates to the plugin because in the back of my mind I am wondering what element slipped through the cracks. The 2.8.1 release was no exception.
WP-Members 2.8.1 made it out the door with a small error related to the new “user-profile” shortcode.
The problem was with the logic in line 208 of wp-members-core.php:
$page = ( 'user-profile' ) ? 'members-area' : $page;
This would actually always return true, which would mean that all shortcodes using the “page” parameter would be members-area pages. So register and login pages, while still being able to provide their core function, wouldn’t be working quite the way they should since they would have both the login and registration forms in the logged out state and wouldn’t have the correct links in the logged in state.
The fix (which has been implemented in the download already) is to change line 208 of wp-members-core.php to:
$page = ( $page == 'user-profile' ) ? 'members-area' : $page;
Chad Butler · ·
The WP-Members 2.8.1 release is an important security update for the plugin. It is highly recommended that you upgrade as previous versions of the plugin have a possible exploit that may be vulnerable. As soon as I became aware of this, I put all other items on the project list on hold.
While 2.8.1 is primarily a security fix, there are some additional features, as well as a few improvements as well. These are items that were already in the works when the security issue was made apparent.
Here is a list of what is included in the 2.8.1 release:
In previous versions, the front side page that was used to handle user functions such as reset a forgotten password, update registration info, change your password, and (in the PayPal addon) renew a subscription, was called with the shortcode [[wp-members page=”members-area”]].
It has been called that since the beginning of this plugin. Unfortunately, it has been a confusing issue because it has turned out that this is not intuitive. For users that do not necessarily read the plugin documentation and installation instructions (or do not read them thoroughly), the term Members Area gets interpreted as “area of my site that is restricted content” and not “area of my site for members to update their info”.
So beginning in 2.8.1, this is being changed to User Profile. The shortcode will be [[wp-members page=”user-profile”]] but the old shortcode will still work. As you can see in 2.8.0, the name was already changed in the options panel. If you continue to use the old shortcode, that is ok. Future releases will support it (for now). However, all references to the Members Area will be changed to User Profile in the plugin documentation and instructions as the use of the term is deprecated.
Chad Butler · ·
The MailChimp Integration Add-on Module has been released in beta. The package can be downloaded from the add-ons page.
It is important to note that this module is only compatible with the new WP-Members 2.8.0 version. 2.8 is presently a beta release, but the current release candidate is pretty close to the final production release. The reason for this is that the module has some settings tied into the plugin’s options and 2.8 introduces a new admin panel, so it could not be integrated with 2.7.7 and earlier.
If you cannot upgrade WP-Members, you can still integrate using the various hooks in the plugin.
Chad Butler · ·
For those of you that want a sneak peek at the new release of WP-Members, the new 2.8 version is now available for beta testing. Please note that this is beta software and with that in mind, consider the following: Continue Reading →
Ready to get started?