Tag: filters
-
Blocking Custom Post Types
Note: As of WP-Members 3.0, you can add custom post types to the plugin’s main blocking options. See the options documentation section on Custom Post Types. This is a new method of blocking custom post types. There are two main differences over the method described here and the original method. First, this method is a little…
-
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.
-
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…
-
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.
-
Customize form fields based on specific page or post criteria
This is a general discussion of how to customize the fields that are displayed in the registration form based on the page or the post that it is being displayed on. There are some more advanced ways to approach this, but for most users, this will be the easiest to implement.