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\
AdminCP -> VBulletin Options -> Easy Form Options -> Question Types to Hide in Form Results Table
Although this will affect all your forms
Thanks . I have added checkboxes so that they're hidden in Form Results Tables.
I wondered if it was possible to have checkbox answers converted to unique numbers and then have all of those unique numbers totaled?
Example: Question: What colours.....? Checkbox Answers: 1.Blue 2.Green 4.Yellow 8.White 16.Pink 32.Red 64.Black 128.Purple 256.etc etc etc (the numbers would need to be invisible)
Somebody selecting Yellow, Black and Blue would cause the answer in the Form Results Table to be 69
That would make it easy to know which checkboxes were selected because only 4 + 1 + 64 = 69
Please can someone tell me how I could phrase a form hook for the following:
I intend to have 22 identical drop-down fields with 22 answers. I need to validate this before submission to ensure that each answer is selected only once. I.E. each answer will be selected once. Apologies but my PHP knowledge is not good, any help would be appreciated.
Yes, select the Form Action as 'Create a New Thread', and then there will be an option to allow attachments
For us it is very important that the data are not visible for other users.
Is there any other way to upload the pics whereby no new threat will be be opend and so the date are not visible vor any other persons?
under form actions i have selected "no prefix", when i go to my form, i can see the dropdown with all the prefix for the destination forum, but when i submit - no prefix is attached the the thread.
using the above code, and the no attachments code you kindly provided me before - I find that when i click on attachments i do not have permissions to access to FUM..
PHP Code:
$currentattaches = $db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "attachment WHERE posthash = '" . $db->escape_string($posthash) . "' AND userid = " . $vbulletin->userinfo['userid'] ); $attachcount = $currentattaches['countrows']; if (!$attachcount) { $complete = false; $customerror .= '<div class="blockrow"><div>Error, No attachments!</div></div>'; }
Removing either the no attachment code or the prefix select code allows me to once again open FUM.