Hihi, I realise this has most likely been asked many times before, but a search didnt seem to find anything, perhaps wrong words. I was just wondering if someone could either point me to an existing thread on the subject, or enlighten me with a couple of steps that show how to redirect after a successful form submit! Thanks ;D
Hi hungryOrb,
There are two options 'out of the box'. Both on the Form URLs tab
If you want to redirect without ChronoForms doing anything then you can add an OnSubmit URL. Note that if you do this ChronoForms will never see the form data, will not send emails, save data, etc.
If you want a Redirect after ChronoForms has sent emails, saved data etc. then use the Redirect URL box. Note that if you use this then the debug information doesn't show up so ifyou need to debug just remove it temporarily.
Bob
There are two options 'out of the box'. Both on the Form URLs tab
If you want to redirect without ChronoForms doing anything then you can add an OnSubmit URL. Note that if you do this ChronoForms will never see the form data, will not send emails, save data, etc.
If you want a Redirect after ChronoForms has sent emails, saved data etc. then use the Redirect URL box. Note that if you use this then the debug information doesn't show up so ifyou need to debug just remove it temporarily.
Bob
Thankyou very much GH :]
I know it's probably tedious to answer the same questions over and over😟 Sorry, I'll try to pass that on where I can.
I know it's probably tedious to answer the same questions over and over😟 Sorry, I'll try to pass that on where I can.
Just my two cents:
It's possible to direct to a "Thank you"-page aftre submission as wll and then, let's say after 5 seconds or so, go back to the actual form!
Placed in the "On submit code - after sending email":
It's possible to direct to a "Thank you"-page aftre submission as wll and then, let's say after 5 seconds or so, go back to the actual form!
Placed in the "On submit code - after sending email":
<?php
global $mainframe;
$custom_tag = '<meta http-equiv="refresh" content="5; url=http://whereverTheFormIs.com" >';
$mainframe->addCustomHeadTag($custom_tag);
?>
<!-- Here is the Thank-you-page: -->
<title>Thanks!</title>
<h2>Your form was submitted successfully.</h2>
<br><br>Post edited by: manooh, at: 2008/03/11 16:48
This topic is locked and no more replies can be posted.