Difference between revisions of "Customizing MediaWiki"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (New page: = Disabling Menus = == Toolbox in Sidebar == === How do I remove the toolbox for users that are not logged in? === Edit the file: /skins/MonoBook.php Find the section that looks like th...) |
PeterHarding (talk | contribs) |
||
| Line 3: | Line 3: | ||
== Toolbox in Sidebar == | == Toolbox in Sidebar == | ||
To remove the toolbox for users that are not logged in... | |||
Edit the file: /skins/MonoBook.php | Edit the file: /skins/MonoBook.php | ||
| Line 40: | Line 40: | ||
</div> | </div> | ||
</pre> | </pre> | ||
= layout Customization = | = layout Customization = | ||
See http://meta.wikimedia.org/wiki/Layout_customization | See http://meta.wikimedia.org/wiki/Layout_customization | ||
Revision as of 16:53, 10 January 2008
Disabling Menus
Toolbox in Sidebar
To remove the toolbox for users that are not logged in...
Edit the file: /skins/MonoBook.php Find the section that looks like this (by searching for p-tb):
<div class="portlet" id="p-tb">
<h5><?php $this->msg('toolbox') ?></h5>
Replace with this:
<div class="portlet" id="p-tb">
<?php if($this->data['loggedin']) { ?>
<h5><?php $this->msg('toolbox') ?></h5>
Go down to the bottom of the div block that you are editing and find the section that looks like this:
wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) ); ?> </ul> </div> </div>
and add the line (between the two /div's) that closes off your new "if" statement:
wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) );
?>
</ul>
</div>
<?php } ?>
</div>