Version: 4.1, by Abe1
Developer Last Online: Jun 2010
Category: New Posting Features -
Version: 3.6.x
Rating:
Released: 09-14-2006
Last Update: 04-23-2008
Installs: 1216
Uses Plugins Template Edits
No support by the author.
Form Hack 4.1
Features:
Ever wanted an online form that a user can fill out, which when submitted gets:
Posted into a new thread in a forum of your choice
Create a new poll in the new thread with options of your choice
Posted as a reply in an existing thread of your choice
PMed to you or someone else
Emailed to an email address you specify
Choose to redirect to the post, thread or forum, or a custom thank you message
Choose to redirect to edit post
See a preview before they submit
Or any combination or all of the above?
Well, this is the hack for you!
You can use this for:
Moderator Applications
Quiz Submit Form which gets PMed to a moderator
Contact Form that goes to PM, email or thread
Guests to apply to be members
Report a Moderator form that goes as a PM to you
Guests can PM you for whatever reason
Order form to buy things
Donation form
News or Articles submissions that can go straight to a thread
Or anything you like - this hack is totally customizable via the AdminCP.
The beauty of this hack is that once you install this hack, to make a new form all you need to do is copy the main hook, rename it to whatever you want, edit the variables in the hook, and you have a totally new form!!! You do not need to touch the templates again, but can always create new ones and use different templates for different forms.
Format of the form:
One main input question
3 Radio buttons Choice questions
3 Normal text input questions
1 Drop down menu
3 Check boxes
1 Long answer question
1 VB message editor text box question
Upload attachments
This is customizable via the hook.
Also:
You can set the usergroups you want access to this form.
Depending on your forum permissions, if the new thread is in a public forum, members can reply to it. This hack allows a form to submit the new thread or post wherever you want it to go.
Force the user to answer all questions.
INSTALLATION Easy - takes only a few minutes:
Import the XML into products. (admin cp -> Plug-in System -> Manage Products -> Add/Import Product)
Edit the main plug-in - the instructions are all inside the hook itself, in the top half. Follow the instructions carefully!
To get to the form, go to: /newthread.php?do=form (change "form" to the name of your form if you have few)
Done!
Use this hack to make as many forms as you like!
Enjoy!
Updates:
Version 4.0: (09/15/2006)
Ported over for vb3.6
Send to multiple emails.
Send multiple PMs.
Parse emails for BBCode
And finally, ATTACHMENTS!
Version 4.1: (04/24/2008)
Fixed for vb 3.6.10
Small bug fixed.
List of the 2 quick edits are in the zip file so you don't have to start making a form from scratch.
MAKE SURE YOU CLICK INSTALL! You will get an email when a new version is released.
Great plugin Abe, I've been burning up the last two days using it. Thank you for you work. I do have a couple of questions, though.
1. I'm intrested in requiring an attachment to be uploaded. Has anybody done this?
2. I'd like to be able to include, in the thread title, the username of the person filling out the form. (i.e., "Application submitted by [username]"). I've seen something similiar to this posted previously but I couldn't get it to work.
2. I'd like to be able to include, in the thread title, the username of the person filling out the form. (i.e., "Application submitted by [username]"). I've seen something similiar to this posted previously but I couldn't get it to work.
Using what was previously posted I managed to make this work. I'll provide the how to so its all in one post. All of the below is accomplished in the hook:
after
Code:
if ($_REQUEST['do'] == $formname)
{
add
Code:
$bbuserinfo = $vbulletin->userinfo;
In Part 2 of the variables add
Code:
$user_name = $bbuserinfo[username];
Example of formtitle
Code:
$formtitle = "Application for - $user_name";
Credit goes to ChrisBaktis and R.Caldwell for their previous discussion concerning this question.
One thing I have discovered is that if you have one form in a product section that isn't working, none of the forms in that section will work.
When the Forms Hack is first installed it creates a new product section in the Plugin Manager called Product: Forms Hack. This is now where I store my live forms. I keep new and forms in development in the vBulletin section at the bottom.
I had a form that wasn't quite finished in the Forms Hack section and none of the other forms in the section worked. When I moved the incomplete form out, the others worked again.
I've installed and tested the form without doing any editing work yet. It appeared that after I submitted the form, a thread named "Generic Form" was created but there isn't any forum associated with it.
Can I know how can I determine the forum to create the new thread in and how do i delete this test thread? I tried to read the "Generic Form" thread but it says i don't have enough permission even though i'm using an administrator account.
I've installed and tested the form without doing any editing work yet. It appeared that after I submitted the form, a thread named "Generic Form" was created but there isn't any forum associated with it.
Can I know how can I determine the forum to create the new thread in and how do i delete this test thread? I tried to read the "Generic Form" thread but it says i don't have enough permission even though i'm using an administrator account.
Any help is much appreciated. Thanks!
Yes you can pick the forum you want it to go in by editing your plugin.
Go to your admincp and scroll down to Plugins & Products, then Plugin Manager. Scroll down until you find the form product. When you find it click Edit and in that block you should see the PHP code. That is where you do your editing to make the form the way you want it.
Yes you can pick the forum you want it to go in by editing your plugin.
Go to your admincp and scroll down to Plugins & Products, then Plugin Manager. Scroll down until you find the form product. When you find it click Edit and in that block you should see the PHP code. That is where you do your editing to make the form the way you want it.
Thank for the prompt reply. So how can I delete the generic thread that doesn't belongs to any forum?
You should be able to delete it like any other thread. Or try moving it to a valid forum then deleting it.
I can't. It says i don't have the permission when i tried to view the thread, even though i'm using administrator account. Any idea how we can resolve this?