Version: 1.00, by Boofo
Developer Last Online: Jun 2012
Version: 2.2.x
Rating:
Released: 07-25-2002
Last Update: Never
Installs: 19
No support by the author.
Space Button to insert a space into messages
Center Button to center text in messages.
Version 1.1 (By Boofo)
A special thanks goes out to bad_madman for all of his help and advice in developing this small hack. It never would have been without him. Thank you, sir.
What this hack does:
This hack will add a "Space" and "Center" button to your vB Code in newreply, newthread and editpost templates. If you try to add a space with the spacebar in a message, it will be parsed out when you save the message. With this it actually inserts a hidden & nbsp; (space code) into the message. The "center" button will allow you to center text in your message.
Tested on vBulletin 2.2.5
NOTE: Updated for version 2.2.6
Due to the censorship parsing of the hard space which is being parsed to the underscore character, you will need to make an additional file edit for the SPACE button to work. The file attachment has been updated.
Install time: less than 2 minutes
Files to edit: 2 (root/vbcode_language.js and admin/functions.php)
Templates to edit: 1 (vbcode_buttons)
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Add new custom vB Code for the "center" tag (in vB Admin CP):
vB Code tag: center
vB Code replacement: <div align="center">{param}</div> (or you can use: <p align="center">{param}</p>)
vB Code example: [center]Centered Text[/center]
Use {option} ?: No
NOTE: Only use
<div align="center">{param}</div>
or
<p align="center">{param}</p>
I put them both in there so you could choose which one you want to use. I use <div align="center">{param}</div>.
Quote:
Originally posted by DrkFusion Uhh...doesn't work for me on 2.2.6...I click the Button, and I enter the text I want, and when I submit, on show thread it shows up like this
Ok, as far as I can tell, the underscore is new part of the censorship option in 2.2.6. (The file attachment in the first post has been updated.) Please test this and let me know if it fixes your problem.
If you want to be able to use the SPACE button in 2.2.6, you can go to your admin/functions.php and replace this line:
PHP Code:
$text = str_replace(chr(160), '_', $text);
with this line:
PHP Code:
// $text = str_replace(chr(160), '_', $text);
Quote:
Originally posted by vdinh
Same problem ... If I use this hack for version 2.2.6, it replace the space created by the hacked button with an underscore _ ...
Originally posted by Boofo Ok, as far as I can tell, the underscore is new part of the censorship option in 2.2.6. (The file attachment in the first post has been updated.) Please test this and let me know if it fixes your problem.
If you want to be able to use the SPACE button in 2.2.6, you can go to your admin/functions.php and replace this line:
Make sure you hit the install button. The wife says when it reaches 15, I can have supper (and I am getting hungry).
Hehe ... I just hit it 1 min ago
There is a slight problem ... Wonder if it is my own problem or the script's ... When I try to edit a message, any time I hit the SPACE button, it gives a SPACE at the end of the message, not at the intended place ... Can you help clarify this? Thanks again
That will happen with any button you use there. That is a feature in vb. There is a fix out for it. It has something to do with the textarea. I'll see if I can find it around here somewhere. Try a search for it, too.
Quote:
Originally posted by vdinh
Hehe ... I just hit it 1 min ago
There is a slight problem ... Wonder if it is my own problem or the script's ... When I try to edit a message, any time I hit the SPACE button, it gives a SPACE at the end of the message, not at the intended place ... Can you help clarify this? Thanks again
Originally posted by vdinh There is a slight problem ... Wonder if it is my own problem or the script's ... When I try to edit a message, any time I hit the SPACE button, it gives a SPACE at the end of the message, not at the intended place ... Can you help clarify this? Thanks again