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\
Is it possible to create conditional questions? example:
If answer to question X = Y, then display question Z.
If answer to question X = not Y, then do not display question Z.
I'm not sure if I can do this anyway but when I try and change the colour of the title, it displays in the title, for example.
PHP Code:
[color=red]Angels (marine)[/color]
also when a user submits a form they get the form submitted succesfully page but when you view it in the forum it's posted too all that's displayed is a /
I'm not sure if I can do this anyway but when I try and change the colour of the title, it displays in the title, for example.
PHP Code:
[color=red]Angels (marine)[/color]
also when a user submits a form they get the form submitted succesfully page but when you view it in the forum it's posted too all that's displayed is a /
I've searched through all the comments for this mod and haven't really found what I'm looking for so I figured I'd try posting my question. There may be an easier way to accomplish what I'm doing as I'm still new to vbulletin. Here's what my goal is..
I have a form (form B) that is contingent upon the user completing another form (form A). I accomplished this by adding some php code into form B to look for stored responses for form A for the user. Form B is only displayed if there are collected responses for form A. This is all working fine.
In form B, I want to have a field that is populated with responses from a field in form A. The field will be a drop down list of the collected responses from form A. I tried creating a custom question field in form B with the appropriate code and it does work, but it prints the question above everything else on the page. I'm not sure how the custom field is supposed to be used, or if there is an easier way to accomplish this. Please advise.
Actually... I just figured it out. I'm not sure where it's documented, but I saw an old post that was using a variable named $answer to add the html field to. Apparently that's a special variable name that makes it work. You don't have to return or echo the variable, it just gets picked up when the form displays.