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 am trying to get this to email to a form question. We have a drop down with email address, I need the form to be emailed to the selection on that drop down. Can you please help?
Add to bottom of Form Hook: Before Submit:
(changing 5 to the question hash of the email address question)
Alright, now that is impressive! Can you tell me the code I would need to do a query on the profilefields (i.e. field8)? I'd like to pull that field and then just have it added to the form without the user having to enter it again.
No need for a query for that, it is already cached in vBulletin userinfo
1. Create 'Custom' question
2. Use following php Code:
hi.
I am wondering, how can you make a user be changed to a different usergroup, or added to a secondry one after completion and submission of the form.
hi.
I am wondering, how can you make a user be changed to a different usergroup, or added to a secondry one after completion and submission of the form.
many thanks
adam
This code worked with vB v3.x it should work with vB v4.x but I haven't tested it with vb v4.x.
Form Hook: Before Submit
PHP Code:
PHP Code:
if ($complete) { $userinfo = $vbulletin->userinfo; $user['usergroupid'] = 4; if (empty($user['usergroupid'])) { $user['usergroupid'] = 2; }
Wow, that is some really cool stuff Banana. Each time I think this mod can do everything, it does something else. Very cool.
I did find another minor issue, which I wouldn't even consider an issue. I wanted to add a link to one of the questions so a user could read a "Code of Conduct" for the forums. They have to answer yes after it is read. If I do the question in html, it looks fine on the editform page, but not on the actual form. If I do the question in bbcode, it looks fine on the actual form, but not on the editform page.
The previous question about the usergroupid is also a very cool feature. Does that change their primary usergroup or does it add them to this as an additional group? Also does this change their current title to that secondary group at the same time?
Here's an idea. Can I set up a question that when someone clicks on the link in the question, it gives a pop-up box with the information they have to read? That would be nice. No worries though, you have enough on your plate right now.
Hi BL, and thanks for continuing your work on this mod, it's a great one.
I am wondering if I can have the multi-line box that appears for the user to write in, default to a larger size automatically , please let me know if that is possible. I am figuring I need to click "increase" about three times to get to the size I would want. So I would like it to just default to that for the user.