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\
Update the (q_*) tags to coincide with duplicate forms.
If the original form had q_1 to pull up a field...on the duplicate form q_1 could now be q_15
This will result in the error "Please complete message and subject fields"
You will have to update each individual form that you copy or import.
Hey mate,
Thanks for the response however I did check and all the questions mirrored identically so my {q_*} etc should still have worked. Regardless however I did try and just update the 'Thread/PM/Email Title' area. In my situation I just added 'Private {q_1} {q_2} {q_3} and that seems to be working fine.
So whilst questions were in order, you were definately on to something at least, thanks for your help!
When I send the form says:
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in [path]/misc.php(89) : eval()'d code on line 116
It looks like this mod will be very useful. Thanks Bananalive!
Does anyone have any suggestions for how I would go about getting some VB session table content to display in the Thread/PM/Email Title? For example, my Vbulletin is heavily integrated with my CRM system and I've got some custom content that is stored in my sessions table. What would be ideal is if I could take the value from one of the session columns and include it in an email title.
I've tried adding $example to the Email Title, and then in the form hook added $example = $vbulletin->session->vars['customcolumnname']; but the data isnt being passed. Any thoughts? Thanks!
Just looking at this mod....would this mod be suitable for logging people wanting to come along to a small conference? Collecting names addresses etc. letting people choose options as to what they want to attend and telling them how much they have to pay for each option?
Just looking at this mod....would this mod be suitable for logging people wanting to come along to a small conference? Collecting names addresses etc. letting people choose options as to what they want to attend and telling them how much they have to pay for each option?
It looks like this mod will be very useful. Thanks Bananalive!
Does anyone have any suggestions for how I would go about getting some VB session table content to display in the Thread/PM/Email Title? For example, my Vbulletin is heavily integrated with my CRM system and I've got some custom content that is stored in my sessions table. What would be ideal is if I could take the value from one of the session columns and include it in an email title.
I've tried adding $example to the Email Title, and then in the form hook added $example = $vbulletin->session->vars['customcolumnname']; but the data isnt being passed. Any thoughts? Thanks!
php variables not parsed for security in form titles
Instead specify the title in the Form Hook
Form Hook: Before Submit
PHP Code:
$threadtitle = "Text before " . $vbulletin->session->vars['customcolumnname'] . " and text after";
When I send the form says:
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in [path]/misc.php(89) : eval()'d code on line 116
Is there a way to edit the new thread button for specific forums, so that the users see the form when they try to create a new thread. And is there a way to redirect the users to the newly created thread, when they submit the form?