Hi all
I am trying to set up a form which will have multiple pages and have used the code from the FAQs as a starting point.
I create a new form, paste the code in and then when I click save I just get a white screen and it doesn't actually save anything.
I have a working form on the same site so I pasted the same code into the working form and get the same thing. So it looks like it doesn't like the code for tabbed forms in the FAQs.
I'd like to get this working if possible so any help would be appreciated.
Regards
Andy
I am trying to set up a form which will have multiple pages and have used the code from the FAQs as a starting point.
I create a new form, paste the code in and then when I click save I just get a white screen and it doesn't actually save anything.
I have a working form on the same site so I pasted the same code into the working form and get the same thing. So it looks like it doesn't like the code for tabbed forms in the FAQs.
I'd like to get this working if possible so any help would be appreciated.
Regards
Andy
Hi Andy,
The recent ChronoForms releases have a 'quirk' that can cause this if there is any PHP in the Form HTML. The workaround is to add this line just after the first <?php tag:
Bob
The recent ChronoForms releases have a 'quirk' that can cause this if there is any PHP in the Form HTML. The workaround is to add this line just after the first <?php tag:
<?php
if ( !$mainframe->isSite() ) { return; }
. . .
This just stops ChronoForms from trying to execute the PHP when the form is saved.Bob
Hi
Nice one, thanks for that!
Andy
Nice one, thanks for that!
Andy
This topic is locked and no more replies can be posted.