Hi,
Just a place to post code tweaks that might be useful in a future release.
[list=a]Showing the form name in the Form Wizard
I often have a long list of forms that I'm working with and it would be good to be able to see the name of the current form in the Wizard Edit.
Fix is to add something like this line at line 46 of views/form_wizard.php and line 42 of views/edit.php
Just a place to post code tweaks that might be useful in a future release.
[list=a]Showing the form name in the Form Wizard
I often have a long list of forms that I'm working with and it would be good to be able to see the name of the current form in the Wizard Edit.
Fix is to add something like this line at line 46 of views/form_wizard.php and line 42 of views/edit.php
<h2 style='margin: 3px 0;'><?php if( !empty($form) ){ echo $form->name; } else { echo 'New form'; } ?></h2>
[/list:o]