When using WP-Members with bbPress and the WP-Members PayPal subscription extension, there are some additional considerations for your setup to integrate these plugins smoothly and restrict forum access for paid users who have a valid expiration date.
Continue Reading →Add front end field sorting to the User List
This set of code snippets will add a list of sorting links to the top of the User List, a link for each of the fields displayed in the main list.
Continue Reading →Add a datepicker to the registration form
Here is an example of how to implement a jQuery datepicker script for the registration form.
Note that as of WP-Members 3.1.8, a date field type is available. However, this is an HTML5 field type and is not fully integrated into all browsers (most notably, it is a “development” option in FireFox). This example is jQuery instead, which is more cross-browser compatible.Continue Reading →
Move the Username Field in the Registration Form
By default, the username field comes at the beginning of the form rows array. This field is not included in the plugin’s fields manager tab, so you can’t re-order it via drag-and-drop like the rest of the fields.
This quick and dirty code snippet that will allow you to move the location of the username field to come after any other field in the registration form. Continue Reading →
Add a separator line of text in the registration form (wpmem_register_form_rows version)
Using the wpmem_register_form_rows filter allows you a simple way to add custom fields and text to the WP-Members registration form using the wpmem_array_insert() API function. Continue Reading →