Version: 4.3.0, by bananalive
Developer Last Online: Nov 2023
Category: New Posting Features -
Version: 4.0.x
Rating:
Released: 01-27-2010
Last Update: 10-04-2011
Installs: 1410
DB Changes Uses Plugins Auto-Templates
Additional Files Translations
No support by the author.
Easily create forms with no HTML or PHP knowledge. Questions can be made compulsory and are checked before the form is submitted. Forms can be previewed. (You can create multiple forms)
Screenshots
There are two posts full of screenshots of this modification
Upload the contents of upload folder to forum root (Allow Overwrite "YES" for overwrite) clientscript\easyforms.css -> \clientscript\
clientscript\easyforms.js -> \clientscript\
Would it be possible to have a DD/MM/YYYY date format option? Many of my users are entering the date the incorrectly because we're not used to the US format
I was looking to install this for members to rate classes given by other members. Before I do this I was making sure it is capable of what I want to do.
I want to be able to have a link in a certain user groups postbit where when you click that link and persons user name (the one that made that post) will become one of the variable answers. When the peson fills out the form the title of the thread that is created will be of that members name (the variable).
Example:
Im in User A's post - I click on the link, fill out the form and when the thread is created the title of the form is 'User A etec etc etc'
Can this be done and if so how?
**** I want to change this - Actually I will have the link go to a form but i would like one of the variables by a drop down list of all the members in a first and seconday user group.
I love this thing... it is the greatest other than the minor problem I am having. I read through this entire thread and didn't see anyone else having the same problem so it must be something I am doing wrong.
I create my form with 14 questions and it is set to make a thread in a specific forum and it does that.... however it doesn't display all of the questions and answers... only the first 4 and they are a bit strange as you can see from the screenshots...
As you can see... I have the Custom Form Output set to show all of the questions and the answers but the first one shows up fine then there is a crap load of space before 2, 3 and 4 show and 5-14 don't show at all.
I love this thing... it is the greatest other than the minor problem I am having. I read through this entire thread and didn't see anyone else having the same problem so it must be something I am doing wrong.
I create my form with 14 questions and it is set to make a thread in a specific forum and it does that.... however it doesn't display all of the questions and answers... only the first 4 and they are a bit strange as you can see from the screenshots...
As you can see... I have the Custom Form Output set to show all of the questions and the answers but the first one shows up fine then there is a crap load of space before 2, 3 and 4 show and 5-14 don't show at all.
any ideas?
I think you will be using the wrong question hashes for custom output - see image below.
I was looking to install this for members to rate classes given by other members. Before I do this I was making sure it is capable of what I want to do.
I want to be able to have a link in a certain user groups postbit where when you click that link and persons user name (the one that made that post) will become one of the variable answers. When the peson fills out the form the title of the thread that is created will be of that members name (the variable).
Example:
Im in User A's post - I click on the link, fill out the form and when the thread is created the title of the form is 'User A etec etc etc'
Can this be done and if so how?
**** I want to change this - Actually I will have the link go to a form but i would like one of the variables by a drop down list of all the members in a first and seconday user group.
Yes, it is possible with Easy Forms
For dropdown list of members, create a custom question with following php code:
PHP Code:
$answer .= '<select name="'.$formbit[id].'">'; $members = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "user WHERE usergroupid = 2 ORDER BY username ASC"); while($row = $db->fetch_array($members)) { $answer .= '<option value="'.$row[username].'"'; if ($row[username] == $thisanswer) { $answer .= 'selected="selected"'; } $answer .= '>'.$row[username].'</option>'; } $answer .= '</select>';
Would it be possible to have a DD/MM/YYYY date format option? Many of my users are entering the date the incorrectly because we're not used to the US format
Thanks
When creating the date question you have the option for date format