Forum
Form not redirecting to thank you page
Hi,
For some reason the contact page is not redirecting to the thank you page after submission. Instead it is loading underneath the form on the contact page
Here is the form code in contact.php
<perch:form id="contact" method="post" app="perch_forms" class="contact-form contact-page">
<div class="main-cf form-group clearfix">
<div class="col-md-12"><label>Contact Form</label><br><br></div>
<div class="col-md-6">
<p><perch:input type="text" id="fname" required="true" label="First Name" placeholder="First Name" />
</div>
<div class="col-md-6">
<p><perch:input type="text" id="lname" required="true" label="Surname" placeholder="Surname" /></p>
</div>
<div class="col-md-6">
<p><perch:input type="email" id="email" required="true" label="Email" placeholder="you@company.com" /></p>
</div>
<div class="col-md-6">
<p><perch:input type="text" id="phone" required="true" label="Phone Number" placeholder="Phone Number" /></p>
</div>
<div class="col-md-12">
<p><perch:input type="textarea" id="message" required="true" label="Message" /></p>
<button class="thm-btn"><perch:input type="submit" id="submit" value="Submit Now" /></button>
</div>
</div>
</perch:form>
And here is a screenshot of the form settings in Perch for the redirection
https://www.evernote.com/l/Ai_5keXd3tNOU5EGhTx6O7pNUTzcNH_-Jc8
Diag as follows:
It being the thank you page? That sounds very odd.
Have you got any JavaScript running?
Hi Drew,
Thanks for the prompt. There was some form validation js. I've now removed that code and the redirect works :)