The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Details »» | |||||||||||||||||||||||||
Here's an easy one, it barely took 4 minutes to do. :china:
This hack will add a quick replying box at the bottom of all threads, only if the user has permission to reply, so when you need to reply to something real quickly you don't need to click the Post Reply button and wait for the page to load. Instructions are in the attached .txt file, and if you want a demo... just look below. NOTE: For the vB 2.3.2 version please see this post. Extras:
Show Your Support
|
Comments |
#272
|
||||
|
||||
Quote:
thanks =) |
#273
|
|||
|
|||
Quote:
- subscribe to the thread (defaulted to 'no' in the original hack) - add signature in quick-replied post (defaulted to 'yes' in the original hack) Both are initially set to user's default values within UserCP: In showthread.php PHP Code:
Code:
# remove two separate lines: <input type="hidden" name="email" value=""> <input type="hidden" name="signature" value="yes"> # then add : <td nowrap valign="bottom"><smallfont> <input type="checkbox" name="email" value="yes" $emailchecked> Subscription<br> <input type="checkbox" name="signature" value="yes" $signaturechecked> Signature<br> <br> </smallfont></td> # right after : <smallfont><a href="javascript:checklength(document.vbform);">[check message length]</a><br><br></smallfont></td> Thanks to FF for the great hack, again... but many users asked me such an enhancement. Bye |
#274
|
||||
|
||||
Good addition, only one thing.
You should really replace this: Code:
if (trim($bbuserinfo[signature])!= "") $signaturechecked="checked"; if ($bbuserinfo[emailnotification]!=0) $emailchecked="checked"; Code:
if (trim($bbuserinfo[signature]) != '') { $signaturechecked = 'checked'; } else { $signaturechecked = ''; } if ($bbuserinfo['emailnotification']) $emailchecked = 'checked'; } else { $emailchecked = ''; } |
#275
|
|||
|
|||
Jawelin, good addon :super:
P.S. FireFly, you edit only for 2.2.5? |
#276
|
|||
|
|||
Yes, of course.
Thanks for pointing it out. P.S.: I wouldn't affect your code too much... Even the resulting behavior of the table isn't too changed with those two little boxes... Otherwise, I moved the two buttons inside that table, btw. |
#277
|
|||
|
|||
workd perfectly in vb2.2.5 BUT..............
i get this error when i try and edit any of the posts: Fatal error: Call to undefined function: unindexpost() in /home/flashdo/public_html/board/editpost.php3 on line 264 but if you then press back, back a few times in ie then refrech on the page, the changes HAVE taken place. any ideas what's up with this error message? =========== www.flash-group.com/board =========== thanks, J |
#278
|
||||
|
||||
Nothing to do with this hack.
|
#279
|
||||
|
||||
Thanks (once again!) Chen. I've installed this hack and it is great, but I'm finding that when board members reply to messages using the quick reply box that this hack creates it doesn't automatically generate an email to members who have opted to receive email replies to the thread. :surprised: The automatic email continues to work when board members reply using the normal reply button. Is there a way to upgrade the coding for this hack so that it defaults to sending the auto emails out? Here are a couple of example posts from members on my board who have discovered this problem:
Quote:
Quote:
|
#280
|
||||
|
||||
Quote:
Oopth! <==== what a great word banoota |
#281
|
|||
|
|||
FireFly if not login to vB and to send the answer through Quick Reply Box the form for input login|password will appear. After input login&password there is a message: No thread specified. If you followed a valid link, please notify the webmaster. Having returned on two pages back any more you will not see the typed answer. Fix it please!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|