In this tutorial you will learn how to add a custom textarea to any USP Pro Form.

Step 1

Beneath the form you are building, make sure that you can see the Custom Fields meta box. There you can define a new custom field with the following code:

field#textarea

You can add other attributes as well, such as label and placeholder, for example:

field#textarea|label#Whatever|placeholder#Whatever

Here is a complete list of attributes for custom fields.

Step 2

After defining the custom field, copy and paste its shortcode into the form where it should be displayed. It will look similar to this:

[usp_custom_field form="3056" id="1"]

Note that in your case the values for form and id may be different.

Once Steps 1 & 2 are complete, you will see a new custom textarea added to the form.

Related