FusionBB
Back to FusionBB Forum | Purchase FusionBB | Features | FusionBB FAQ | Documentation Wiki | License

(edit)




Installation Documentation




Installation: Narrated Tutorials




Administrator-Developer Documentation



General Administration

General Customizations

Troubleshooting


Feature-Specific Topics


FusionBB Calendar

MyPaymentPal

MySQL

Particle Boxes



Users: FusionBB Profile Options




Users: FusionBB-Related FAQ



Users:General Site FAQ



Users: Information & How To's


Narrated Tutorials (.mov format)

Images

Making Posts

Posting & Viewing Messages FAQ

Managing Files & Polls

Searching

Troubleshooting



Recent Changes Printable View Page History Edit Page

(Applies to: FusionBB version 1.0)

Note: these instructions apply to FusionBB version 1.0. Later versions of the software include this as an Administrator Configurable feature.

Doing the following will allow you to configure FusionBB so that some users don't have the ability to toggle the sidebars on/off. (Remember to back up the /includes/common.php file before making any changes.)


  • In the /includes/common.php file, find the following code:

if ($session->user_prefs['info_sidebar'] > 0 && !$this->meta_refresh &&

!defined('NO_SIDEBAR')) { $this ->

createNavTabSub('myfusion',$lang_str['TOGGLE_SIDEBAR'],'toggleside');

}

  • And replace it with:

if ($session->user_prefs['info_sidebar'] > 0 && !$this->meta_refresh && !defined('NO_SIDEBAR') &&

isset($session->site_auth['CAN_SET_SIDEBARS'])) {

$this ->

createNavTabSub('myfusion',$lang_str['TOGGLE_SIDEBAR'],'toggleside');

}

  • Save your changes.


©2003-2007 InteractivePHP, Inc.
Page last modified on July 07, 2007, at 04:10 PM