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\
this part of the script , what if 1000's of people submitted the script would it wrap or is there a way to take this part out or disable it so it doesn't show who submitted the form ?
just wondering
thanks a bunch :up:
import (upgrade) attached Easy Forms product file
Add the following php code to Form Hook: Before Submit:
Sorry I don't understand what you are trying to do
What I want to do, for example under stone type, would be to have a single line of drop down or text boxes where the input and output could closely match a spreadsheet. Basically a table for input that was 8 rows down and 5 columns across.
Also, I would like to know if the data that you use for creating the graphs could actual go into a DB table that can later be used for SQL queries.
How can I Re-direct/ force users to submit form when they click new thread?
Create plugin newthread_start
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
Change 1,2,3 for appropriate forumids.
I want to implement this bananalive, but not sure how, would i have to make this into a xml and import it as a plugin or, does this go in hook area?, also i have a lot more forums that i want to force and i have modified the code is this right
PHP Code:
if (in_array($forumid, array(58,59,60,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108)))))))))))))))))))))))))))))))))))))))))))))))))))
{
header( 'Location: http://www.harleydavidsonpartsforum.comforum/misc.php?do=form&fid=1' ) ;
}
any help from anyone would be appreciated just not sure about this part of the explination
First, thanks again for this mod. It's very flexible and provides value in many different scenarios. Your efforts are greatly appreciated!
I have a question thats more of a programming question. Not a mod bug or anything. I'm trying to figure out how I could make a custom question, which happens to be a select option drop down menu, retain it's value when performing a preview on a form.
So for example, I have a question that queries a sql database and builds a drop down list of data with the first choice selected 'New RQST' as the default. You make your choice, let's say it's 'RQST 109'. When I click preview, my preview looks great. However on the original form listed below, where you can make edits, the custom field has defaulted to 'New RQST'.
Does anyone know of some sort of technique that I could use to detect we're in preview to retain the selection?
First, thanks again for this mod. It's very flexible and provides value in many different scenarios. Your efforts are greatly appreciated!
I have a question thats more of a programming question. Not a mod bug or anything. I'm trying to figure out how I could make a custom question, which happens to be a select option drop down menu, retain it's value when performing a preview on a form.
So for example, I have a question that queries a sql database and builds a drop down list of data with the first choice selected 'New RQST' as the default. You make your choice, let's say it's 'RQST 109'. When I click preview, my preview looks great. However on the original form listed below, where you can make edits, the custom field has defaulted to 'New RQST'.
Does anyone know of some sort of technique that I could use to detect we're in preview to retain the selection?
Many Thanks.
Bobbo
Add to the bottom of your php code for that question:
I want to implement this bananalive, but not sure how, would i have to make this into a xml and import it as a plugin or, does this go in hook area?, also i have a lot more forums that i want to force and i have modified the code is this right
PHP Code:
if (in_array($forumid, array(58,59,60,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108)))))))))))))))))))))))))))))))))))))))))))))))))))
{
header( 'Location: http://www.harleydavidsonpartsforum.comforum/misc.php?do=form&fid=1' ) ;
}
any help from anyone would be appreciated just not sure about this part of the explination
PHP Code:
[*]Create plugin newthread_start
Create a vBulletin plugin in AdminCP using hook 'newthread_start' with following php code
PHP Code:
if (in_array($forumid, array(58,59,60,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108)))
{
header( 'Location: http://www.harleydavidsonpartsforum.comforum/misc.php?do=form&fid=1' ) ;
}
What I want to do, for example under stone type, would be to have a single line of drop down or text boxes where the input and output could closely match a spreadsheet. Basically a table for input that was 8 rows down and 5 columns across.
Also, I would like to know if the data that you use for creating the graphs could actual go into a DB table that can later be used for SQL queries.
No sorry that isn't possible with this modification.