In this tutorial, you will learn how to set up a contact form that also registers the user with your WordPress-powered site.

Video Tutorial

Written Tutorial

To make a combo contact/register form, follow these steps:

Step 1

First, include the [usp_email] and [usp_name] shortcodes in the form. These are required for registration. Other fields may be added as desired.

Step 2

Then include the required hidden field in the same form:

<input name="usp-is-register" value="1" type="hidden">

The form is now a user-registration form. Of course, you may also want to include other useful fields, such as those outlined in this tutorial.

Step 3

Next, add the following hidden field to make it a combo contact/register form:

<input name="usp-is-contact" value="1" type="hidden">

And that’s all there is to it. To see how it works, try a few test registrations and fine-tune any details as desired. Learn more about making a contact form.

Related