The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Quick Reply Box (with Close/Open thread switch) Details »» | |||||||||||||||||||||||||||
Quick Reply Box (with Close/Open thread switch)
Developer Last Online: Nov 2023
This hack will let your users post a Quick Reply, instead of going through the New Reply steps.
If you have permissions, it will show you a Close/Open Thread check box beside the Quick Reply. Also, the check box will show in New Thread, New Reply, New Post and Edit Post. ESTIMATED INSTALL TIME: 10 minutes REQUESTED BY: hellsatan TESTED IN VERSION: 2.2.7 CREDITS: The hack includes one small code segment of FireFly's Quick Reply Box related to user permissions. (9 lines of code) [high]RELATED HACKS[/high] Quick Delete Post Quick Close/Open Thread (with reason) You like this hack? Please click on the [high]Install[/high] button. To download the latest version of this hack, click below: Show Your Support
|
Comments |
#92
|
||||
|
||||
Oblivion: that's only the signature box thingy, which, yes, does not require file hacks.
|
#93
|
||||
|
||||
I finished & released my hack, see my signature for the link :up:
|
#94
|
||||
|
||||
How can I make it so that if I hit the TAB on my keyboard it will tab to the GO button instead of the forum banner?
|
#95
|
||||
|
||||
Put
tabindex="#" in the <input type="submit" ..> code in the template. And replace # with the number one higher than the tabindex of your Textarea field. |
#96
|
|||
|
|||
I had some people at the board complaing they were getting errors with this quick reply box when i wasnt.
Turned out that if you have scipt debugging enabled, it reports that the script is bad. If you dont have debugging enabled, it appears to work fine. Unfortunatly, i dont know how much about scripts so cant post any help |
#97
|
|||
|
|||
OK, here is the script fix:
In showthread_replybox, a whole chunk of code is missing. You need to add this at the top: Code:
<script language="javascript"> <!-- var postmaxchars = $postmaxchars; function validate(theform) { if (theform.message.value=="") { alert("Please complete the message field."); return false; } if (postmaxchars != 0) { if (theform.message.value.length > $postmaxchars) { alert("Your message is too long.\n\nReduce your message to $postmaxchars characters.\nIt is currently "+theform.message.value.length+" characters long."); return false; } else { return true; } } else { return true; } } function checklength(theform) { if (postmaxchars != 0) { message = "\nThe maximum permitted length is $postmaxchars characters."; } else { message = ""; } alert("Your message is "+theform.message.value.length+" characters long."+message); } //--> </script> |
#98
|
|||
|
|||
I use 2.30 and well it works fine except
Quick Reply: Close This Thread won't show up unless you highlight it. Also when I goto edit post the delete post is already checked and if I do try to delete it says that I chose not to delete. |
#99
|
|||
|
|||
I installed it and it works great...BUT the background of the box is GREEN! How do I change the color? It doesn't mesh all that well with my grey background board
|
#100
|
|||
|
|||
Never mind...figured out that it was the spaces making it do that...
great hack... However...I don't have a close thread check box...any idea why? I thought this hack was supposed to put that in there |
#101
|
|||
|
|||
Quote:
edit...Never mind...found it... |
#102
|
|||
|
|||
Quote:
this is a great hack. worked perfect for me the first time around. the go button looks a lot better than the submit button in my opinion. |
#103
|
|||
|
|||
Quote:
line 598 is here Quote:
|
#104
|
|||
|
|||
hmmm with 2.2.9 I followed the instructions and not seeing any changes to my forum
|
#105
|
||||
|
||||
try my hack for this
|
#106
|
|||
|
|||
It is virtually your hack anyway. Anyone installing this should be wary that there are bits missing which are mentioned in the thread but not corrected in the first post attachment.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|