Status
Not open for further replies.
This suggestion has been closed. Votes are no longer accepted.
consideration?
i was waiting for more than this word...

if this mod has the option to hide a part of a message, it also needs to have a button to select that part..

is very prehistorical the needed to write the entire bbcode [hide] to hide a part of the text...
 
consideration?
i was waiting for more than this word...

if this mod has the option to hide a part of a message, it also needs to have a button to select that part..

is very prehistorical the needed to write the entire bbcode [hide] to hide a part of the text...

No features are finalized until right before work starts on the upgrade. I go through all of the requests at that point and make the featurelist then. Under consideration is just our way of telling you we've received the request and it'll be looked at when we go to design the new version =)
 
You can manually add one for the time being, here is the process.


1. Download this image,(save it as hide.jpg) and insert it in your, images/buttons folder via ftp.
14dd7b6f3e1d37.jpg


2. Now in your templates navigate to, Editor Templates/editor_toolbar_on: and search for the following code:

Code:
<vb:if condition="!$show['basicbbcodeonly']">
Add Above that code this:
Code:
<img src="images/buttons/hide.jpg" class="imagebutton" id="{vb:raw editorid}_cmd_wrap0_hide" width="20" height="20" alt="Insert Hide Tags" />

Once this is all done correctly, you will have a new image in your editor, and when you click on that, it will insert the hide tags automatically.

14dd7bae9de2ff.png


:D
 
If anyone wants it for usergroups...here is Admin only.;)

Code:
<vb:if condition="is_member_of($bbuserinfo, 6)">
<img src="images/buttons/hide.jpg" class="imagebutton" id="{vb:raw editorid}_cmd_wrap0_hide" width="20" height="20" alt="Insert Hide Tags" /></vb:if>
 
You can manually add one for the time being, here is the process.


1. Download this image,(save it as hide.jpg) and insert it in your, images/buttons folder via ftp.
14dd7b6f3e1d37.jpg


2. Now in your templates navigate to, Editor Templates/editor_toolbar_on: and search for the following code:

Code:
<vb:if condition="!$show['basicbbcodeonly']">
Add Above that code this:
Code:
<img src="images/buttons/hide.jpg" class="imagebutton" id="{vb:raw editorid}_cmd_wrap0_hide" width="20" height="20" alt="Insert Hide Tags" />

Once this is all done correctly, you will have a new image in your editor, and when you click on that, it will insert the hide tags automatically.

14dd7bae9de2ff.png


:D

if i add a hide button on the editor buttons, the hide function doesnt work..

is the same using your method?
 
The hide button added in the editor is the default code for the hide function from vBulletin, since it is a hidden bbcode in vB that is why you added the code to your editor_toolbar_on:

This method is the same as manually typing the code out
 
Status
Not open for further replies.
Top