Jump to content
WebFlake

How to [manually] disable the collapse button for the Sidebar


ryanjkita

Recommended Posts

This is a relatively simple tutorial.

 

Most people do this by deleting a line of code, but what we will be doing is commenting it out. I do it this way so if for whatever reason I want to enable it in the future, I can do so without having to do too much work.

 

The steps are as follows:

  1. Go into your Admin Control Panel
  2. Click the "Look & Feel" button.
  3. Click the name of the skin you are currently using on your board.
  4. In the left hand side, click on the category "Board Index", then click on "boardIndexTemplate".
  5. Find this code:
    <a href='#' id='toggle_sidebar' title='{$this->lang->words['toggle_sidebar']}' data-closed="{$this->lang->words['_laquo']}" data-open="&times;">&nbsp;</a>
    
  6. And replace it with this code:
    <!--<a href='#' id='toggle_sidebar' title='{$this->lang->words['toggle_sidebar']}' data-closed="{$this->lang->words['_laquo']}" data-open="&times;">&nbsp;</a>-->
    

That's it! Go and check your sidebars to make sure, though. It may be a good idea to recache your skins, but I didn't find it necessary.

 

If you are wondering what that did, essentially all we did was commented the code out so the browser ignores it. If for whatever reason you wish to undo what we did, just remove the <!-- and --> at the beginning and end of the modified code. If you think you will forget this, there is always that handy dandy bookmark feature ;)

 

Hope this helps out some people!

  • Upvote 3
Link to comment
Share on other sites

  • 5 weeks later...
  • 2 weeks later...
  • 2 weeks later...
  • 4 weeks later...
  • 3 months later...
  • 4 months later...

Revert the change....

 

from

<!--<a href='#' id='toggle_sidebar' title='{$this->lang->words['toggle_sidebar']}' data-closed="{$this->lang->words['_laquo']}" data-open="&times;">&nbsp;</a>-->

 

to

<a href='#' id='toggle_sidebar' title='{$this->lang->words['toggle_sidebar']}' data-closed="{$this->lang->words['_laquo']}" data-open="&times;">&nbsp;</a>

 

..

Achievements:

February 14 2013 - Joined WebFlake & Became Moderator.
March 26 2013 - Became a Dad of 1 kid.
April 8 2015 - Became a Dad of 2 kids.
July 15 2015 - Retired as a Moderator.
November 11 2016 - Passed my Car Driving Licence.
April 13 2017 - Became apart of the Junior Moderator Team.

Link to comment
Share on other sites

×
×
  • Create New...