For those that are looking to shape the forms into a specific design that may include using input tag placeholders rather than labels, this set of code snippets will describe how to do that. Continue Reading →
wpmem_register_form_rows
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 →
Request additional fields on user profile
Sometimes, you might want to have a limited set of fields during the registration process, but would still like additional fields available for the user to complete in the user profile. If these are not required fields, the process is relatively simple and can be completed with a single filter function.
Continue Reading →Integrating Really Simple CAPTCHA
Really Simple CAPTCHA can be used with the WP-Members plugin in place of the default reCAPTCHA.