Tag: wpmem_register_form
-
Display form rows in columns
This tutorial will address the common question, “How do I layout the form in columns?” Let me say that this tutorial is one of those that is a “guideline,” not an exact science. That is due to the number of different variables that cannot be controlled. So for best chance of success, I recommend that…
-
Force user to update data before using the site
This code example is similar in both the code used and the concept as what was outlined in Force User to Update Password from Randomly Set Password. The main difference here is that we are looking for the user to update required user fields that may not yet be complete. This may be useful in situations…
-
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.
-
Add a Date of Birth Field with Dropdown Selections for Month, Day, and Year
I have received a lot of requests in the past for how to add a set of dropdown selections for date and store it as a single user meta value. This is a great example of using the new wpmem_register_form_rows filter hook, a new hook in 2.9, because we can use a single field in the…
-
Multiple Selection Checkboxes – Add A Section Heading (Advanced)
As of WP-Members 3.1.0, multiple selection checkbox support is an included feature in the plugin. That makes custom implementation such as described here unnecessary for most applications. I am leaving this post here however as there may continue to be users who (1) need a high level of customization that may utilize some or all…