Hello,
I'm new in using chronoforms. I'm making a big form which requires more than 50 fields. When i try to do so now the field isn't saved and in admin i'm not redirected to the chronoforms/form mamnagement page but to the admin/ main configuration page. How can i raise the number of fields in my chronoform?
I'm new in using chronoforms. I'm making a big form which requires more than 50 fields. When i try to do so now the field isn't saved and in admin i'm not redirected to the chronoforms/form mamnagement page but to the admin/ main configuration page. How can i raise the number of fields in my chronoform?
Hi Sax,
There is no limit to the number of fields that you can have in ChronoForms and I've seen some examples with way more than 50.
The current release does have a bad 'feature' that measn tha tit tries to evaluate the code before saving in the admin side. If there is any PHP in the form this can cause errors. The current fix is to put
Bob
There is no limit to the number of fields that you can have in ChronoForms and I've seen some examples with way more than 50.
The current release does have a bad 'feature' that measn tha tit tries to evaluate the code before saving in the admin side. If there is any PHP in the form this can cause errors. The current fix is to put
<?php
if ( !$mainframe->isSite() ) { return; }
?>
at the beginning of the file (or before any included PHP).Bob
Hi Bob,
Thnx for the quick advice. I put your code in Form Code/Form HTML and Form Code/Form Javascript but there is no php code inside it. Only HTML. Nevertheless i still being redirected to de admin/ main configuration page. Changes in the form above 50 are not saved.... What goes wrong?
Greetz,
Sax
Thnx for the quick advice. I put your code in Form Code/Form HTML and Form Code/Form Javascript but there is no php code inside it. Only HTML. Nevertheless i still being redirected to de admin/ main configuration page. Changes in the form above 50 are not saved.... What goes wrong?
Greetz,
Sax
Hello,
I'm able in Form html to add more items than 50. But...if i want to add an item that's not yet in my form i need to know the source of the html code. I would like to use the wizard-edit for this. And at this point i'm being confronted with the maximum of 50 fields.
Here is my backup form. Thanks for the support for so far!
I'm able in Form html to add more items than 50. But...if i want to add an item that's not yet in my form i need to know the source of the html code. I would like to use the wizard-edit for this. And at this point i'm being confronted with the maximum of 50 fields.
Here is my backup form. Thanks for the support for so far!
Hi Sax,
I just added another dozen or do fields using Wizard Edit - there are around 68 now (and just added 20 more).
I'm not sure why you see a limit at 50 -- perhaps it's a memory limit on your server?
At that size though you might well be better breaking the form up into separate pages.
Bob
I just added another dozen or do fields using Wizard Edit - there are around 68 now (and just added 20 more).
I'm not sure why you see a limit at 50 -- perhaps it's a memory limit on your server?
At that size though you might well be better breaking the form up into separate pages.
Bob
This topic is locked and no more replies can be posted.