MediaWiki: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
#p-tb { display: none; } | #p-tb { display: none; } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Footer == | == Footer == | ||
Line 15: | Line 16: | ||
'''Poweredby logo''' | '''Poweredby logo''' | ||
This hides the Poweredby logo on pages. | This hides the Poweredby logo on pages. | ||
<syntaxhighlight lang="python" line> | <syntaxhighlight lang="python" line> | ||
# Edit LocalSettings.php and add line: | # Edit LocalSettings.php and add line: | ||
unset( $wgFooterIcons['poweredby'] ); | unset( $wgFooterIcons['poweredby'] ); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 34: | Line 34: | ||
/* Or remove them all*/ | /* Or remove them all*/ | ||
#footer-places { display: none; } | #footer-places { display: none; } | ||
</syntaxhighlight> | |||
Revision as of 17:56, 6 December 2024
SideBar
Sidebar Typing MediaWiki:Sidebar in search bar, and validating with Enter.
This hides the tools from the sidebar
#p-tb { display: none; }
Poweredby logo This hides the Poweredby logo on pages.
# Edit LocalSettings.php and add line:
unset( $wgFooterIcons['poweredby'] );
This hides the footer (Vector skin)
/* remove some */
#footer-places-privacy { display: none; }
#footer-places-about { display: none; }
#footer-places-disclaimer { display: none; }
/* Or remove them all*/
#footer-places { display: none; }
Disabling section links
.mw-editsection { display: none;}
Mainpage Typing MediaWiki:Mainpage in search bar, and validating with Enter.