Hey,
Thanks for your prompt answer.
Yes, the “gravity_forms” function is part of the core Gravity Forms plugin but it’s the Multi Column plugin which reports those two errors.
I have a form with the id “2” which I built in the backend via Gravity Forms plugin. I have your plugin activated, the form has the necessary css classes on the corresponding form elements –> it works fine; the form looks as expected, i get two columns. all great if i call the function “gravity_forms” just once.
The errors only occur if I try to get the form with the “gravity_forms” function twice like so:
$jsform = gravity_form(2, false, false, false, '', true, 12, false);
$nojsform = gravity_form(2, false, false, false, '', false, 12, false);
The two errors mentionend in my first post above are reported by the file of your plugin in gf-form-multicolumn/gf-form-multicolumn.php
on the very line numbers mentioned in the the first post above.
To reproduce the error:
–> Same form, fetched twice (consecutively) via “gravity_form” function in a php file (template) – and your plugin reports those two errors on line 29 and 110.
Cheers