Hi there,
That's not too hard to do.
Go to the menu point "Form" in your WordPress backend. Here you'll see the layout of the form.
Out of the box it looks like this:
Code:
<p>Your Name (required)<br />
[text* your-name] </p>
<p>Your Email(required)<br />
[email* your-email] </p>
<p>Subject<br />
[text your-subject] </p>
<p>Your Message<br />
[textarea your-message] </p>
<p>[submit "Send"]</p>
To move the message box that pops up when submit is clicked and you haven't filled out all of the fields properly, just place a [response] tag somewhere in the above code.
E.g. the following would make the box appear between the message field and the submit button:
Code:
<p>Your Name (required)<br />
[text* your-name] </p>
<p>Your Email(required)<br />
[email* your-email] </p>
<p>Subject<br />
[text your-subject] </p>
<p>Your Message<br />
[textarea your-message] </p>
[response]
<p>[submit "Send"]</p>
Bookmarks