In this tutorial, you will learn how to create a Combo Form that submits posts, registers users, and sends contact email.

Video Tutorial

Written Tutorial

Note: this tutorial shows only the minimum requirements for setting up a combo submit/register form. Feel free to elaborate with more form fields and customize things as needed.

Step 1

Add the minimum required fields:

[usp_name]
[usp_title]
[usp_content]
[usp_email]

These fields are necessary for post submission, user registration, and sending email via contact form. Of course, many other fields are possible, this is a simple example.

Step 2

The last step to create our combo submit-post/register-user/send-email form is to add the required hidden fields:

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

Done! Test thoroughly and customize as needed.

Related