Custom BBCodes in a spoiler

Mixed forum with code snippets, guides and styles
Forum rules
Everything in this forum is for everybody
But support only for Donators!
Post Reply
User avatar
Stoker
Site Admin
Site Admin
Posts: 3525
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Custom BBCodes in a spoiler

Post by Stoker »

Custom BBCodes in a spoiler
Written by Stoker

Puts all custom bbcodes in a spoiler. This makes the posting page look nicer and save some space.

Open styles/{YOURTHEME}/template/posting_buttons.html
Find:

Code: Select all

<!-- BEGIN custom_tags -->
      <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
   <!-- END custom_tags -->
Replace with:

Code: Select all

<span><input type="button" class="button2" value="Show Custom BBCodes" onclick="if (this.parentNode.parentNode.getElementsByTagName('span')[1].getElementsByTagName('span')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('span')[1].getElementsByTagName('span')[0].style.display = '';      this.innerText = ''; this.value = 'Hide Custom BBCodes'; } else { this.parentNode.parentNode.getElementsByTagName('span')[1].getElementsByTagName('span')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show Custom BBCodes'; }" /></span><span style="margin:5px;"><span style="display: none;"><br /><!-- BEGIN custom_tags -->
      <input type="button" class="button2" style="margin-top:2px;" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
   <!-- END custom_tags -->
   </span></span>
Save, upload and refresh templates.
Board rules! No PM support
Post Reply