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\
I've been searching but can't find out the answer to my questions.
I would like to create a poll that each choice has a different thumbnail next to it. The reason I ask this is because I would like to use it to allow members to vote on a photo contest.
I would need to restrict the amount of times they vote and be able to see who voted (make it public). Can this be done?
Thanks
Just wanted to note that when the "Forum Submit Limit Per User" is relatively low it works.
I had some stuff setup with a limit of 20 and one user is at 21 already :-(.
I'm going to donate. Either way this has helped me a lot.
EDIT: Upgraded and then downgraded. When I tried to export a form with the new version or do some other functions it would take me to the smilies. After reverting back everything is fine again.
I've been searching but can't find out the answer to my questions.
I would like to create a poll that each choice has a different thumbnail next to it. The reason I ask this is because I would like to use it to allow members to vote on a photo contest.
I would need to restrict the amount of times they vote and be able to see who voted (make it public). Can this be done?
Thanks
Add Question -> Radio Buttons Question
The options field(s) allow bbcode, such as [img]
Settings for viewing form results are set in the admincp -> vbulletin options -> easy form settings
Edit Form -> Form Permissions -> Form Submit Limit per user -> 1
Just wanted to note that when the "Forum Submit Limit Per User" is relatively low it works.
I had some stuff setup with a limit of 20 and one user is at 21 already :-(.
I'm going to donate. Either way this has helped me a lot.
Hmm, not sure why this isn't working, perhaps the field has reached its length limit.
Alternative method, if you're saving results to db
Edit Form -> Form Hooks -> Form Hook: Form Start:
PHP Code:
$count_submits = $vbulletin->db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "formresults WHERE fid = '$fid' AND userid = '".$vbulletin->userinfo['userid']."' ");
if ($count_submits['countrows'] > 20)
{
print_no_permission();
}
Quote:
EDIT: Upgraded and then downgraded. When I tried to export a form with the new version or do some other functions it would take me to the smilies. After reverting back everything is fine again.
I expect this is because your browser was using a cached version of easyforms.js. Clear browser cache or manually reload easyforms.js and it'll work.
I'm on 4.1.7 as of this morning and everything seems to still be working. I don't use anything that requires CKEditor in the forms. Just thought that was worth noting.
For some reason, my new users who fill out the form are moved to a moderated post. It didn't before.
Recently upgraded from 4.1.3 to 4.1.6. I have a MOD installed (GlowHost - Spam-O-Matic), not sure if that could be my problem.
Basically I use the form for potential recruits for our gaming clan. I want the user to post the form unmoderated. Did something change in the settings or did I miss something?