
Scheduled Maintenance: 10-11-2025 Electricity company maintenance between 09:00 and 15:00.
3.2.x Extensions Database 3.2 / 3.3 ⇒ Form Maker/Creator 3.2.x
-
umi
- Users

- Posts: 89
- Joined: 05 Aug 2019, 14:18
Re: Form Maker/Creator 3.2.x
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
umi
- Users

- Posts: 89
- Joined: 05 Aug 2019, 14:18
Re: Form Maker/Creator 3.2.x
Check yellow marked on image:
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
jan_2017
- Users

- Posts: 203
- Joined: 05 Feb 2017, 10:21
Re: Form Maker/Creator 3.2.x
What do you mean?HoodieWeather wrote: 05 Feb 2021, 06:34 If there's a way to cut down on the text boxes that would be awesome.
-
Ravenheart
- New user

- Posts: 2
- Joined: 06 Apr 2021, 18:23
Re: Form Maker/Creator 3.2.x
Found a pretty major bug - using phpBB 3.3.3 and Prosilver.
If the user doesn't fill out all of the text inputs in the field, they are given the 'your message contains too few characters' error message and the form does not submit. Please note that this is nothing to do with the asterisk 'required'.
To reproduce:
If the user doesn't fill out all of the text inputs in the field, they are given the 'your message contains too few characters' error message and the form does not submit. Please note that this is nothing to do with the asterisk 'required'.
To reproduce:
- Create a form with two text inputs (neither of them mandatory)
- Go to the forum and create a new topic
- Populate only one of those text inputs with data, leaving the other one blank
- Submit the form
- You will now receive the 'your message contains too few characters' error
- Open event/listener.php
- FIND:
Code: Select all
if ($fieldcontents == '') { return; } else { return $appform_post; } - REPLACE WITH:
Code: Select all
return $appform_post;
Last edited by Ravenheart on 17 Aug 2021, 01:42, edited 5 times in total.
-
stone23
- Users

- Posts: 46
- Joined: 07 Nov 2018, 17:44
Re: Form Maker/Creator 3.2.x
Hello,
Is it possible to have an option to show the default form view and hide the button?
This is to force the use of the form
Is it possible to have an option to show the default form view and hide the button?
This is to force the use of the form
-
Alisvel
- New user

- Posts: 2
- Joined: 13 Aug 2021, 09:18
Re: Form Maker/Creator 3.2.x
Is there a working version for 3.3?
After this tip, there are even more mistakes.Hippie459MN wrote: 25 Feb 2020, 18:12Its working here on 3.3.0 but you need to fix a file.
Open dmzx/formcreator/config/tables.yml
Find:Replace with:Code: Select all
parameters: dmzx.formcreator.table.formcreator: %core.table_prefix%form_makerThat should fix it and make it work. :)Code: Select all
parameters: dmzx.formcreator.table.formcreator: '%core.table_prefix%form_maker'
-
Hippie459MN
- Donator

- Posts: 69
- Joined: 16 Aug 2015, 08:37
Re: Form Maker/Creator 3.2.x
What kind of mistakes/issues are you having? Im using this just fine on 3.3.xAlisvel wrote: 16 Aug 2021, 14:53 Is there a working version for 3.3?
After this tip, there are even more mistakes.Hippie459MN wrote: 25 Feb 2020, 18:12Its working here on 3.3.0 but you need to fix a file.
Open dmzx/formcreator/config/tables.yml
Find:Replace with:Code: Select all
parameters: dmzx.formcreator.table.formcreator: %core.table_prefix%form_makerThat should fix it and make it work. :)Code: Select all
parameters: dmzx.formcreator.table.formcreator: '%core.table_prefix%form_maker'
"I went outside once. The graphics sucked but the game play was ok."
-
Alisvel
- New user

- Posts: 2
- Joined: 13 Aug 2021, 09:18
Re: Form Maker/Creator 3.2.x
I fixed it by deleting the last line. There are no errors in the panel but extension doesn't work (fields do not appear when creating a theme).Hippie459MN wrote: 17 Aug 2021, 00:31 What kind of mistakes/issues are you having? Im using this just fine on 3.3.x
-
Tessatore
- Users

- Posts: 4
- Joined: 17 Sep 2016, 21:27
Re: Form Maker/Creator 3.2.x
I'm looking for this as well and hopefully the ability to edit the form after posting (one day)stone23 wrote: 25 Jun 2021, 16:40 Hello,
Is it possible to have an option to show the default form view and hide the button?
This is to force the use of the form
Thanks for all your amazing work!
-
HoodieWeather
- Users

- Posts: 25
- Joined: 22 Jun 2016, 00:33
Re: Form Maker/Creator 3.2.x
Is there a way to when I upload a pic to my site, that I can some how edit out the bottom 'attachment' section. I don't need to two the picture twice.
Thanks
Thanks
-
stone23
- Users

- Posts: 46
- Joined: 07 Nov 2018, 17:44
Re: Form Maker/Creator 3.2.x
Hello,stone23 wrote: 25 Jun 2021, 16:40 Hello,
Is it possible to have an option to show the default form view and hide the button?
This is to force the use of the form
A little "up"...
It's been 10 months since I asked the question and still no answer...
-
max-ima
- Users

- Posts: 139
- Joined: 25 Mar 2022, 07:11
Re: Form Maker/Creator 3.2.x
Tested on 3.3.7 and works. Thanks
-
max-ima
- Users

- Posts: 139
- Joined: 25 Mar 2022, 07:11
Re: Form Maker/Creator 3.2.x
.yml check he says
Find tables.yml
Code: Select all
parameters:
dmzx.formcreator.table.formcreator: %core.table_prefix%form_makerReplace with Replace the preceding lines with the following
Code: Select all
parameters:
dmzx.formcreator.table.formcreator: '%core.table_prefix%form_maker'