The simplest (and my recommended) way would be to use CSS to hide the links.
Use something like Firebug[1] for Firefox to inspect the links and get their
ID or class name. Then you can place something like this in your
MediaWiki:Common.css

/* if by ID */
#myTalkLink { display: none; }
/* if by class */
.userLinks { display: none; }

The alternative (and my not recommended) way would be to look at the skin's
PHP file and find where it creates the links and remove it from the code.

I don't use this skin so I unfortunately cannot provide you with the
specific CSS code to add or PHP code to modify. =/

Walter Mazza


On Thu, Nov 26, 2009 at 3:42 PM, Pierre Labrecque
<[email protected]>wrote:

> Hello !
>
> (me again ;-)
>
> I use Mediawiki 14.1 and the only one skin in use on my wiki is Rilpoint
> (
> http://www.rilnet.com/en/rilpoint-sharepoint-look-alike-drupal-and-mediawik
> i-skin)
> The other skins are disable via the LocalSettings.php.
>
> In the top right corner, there are several links (user links) : Username,
> My
> Preferences, My Talk, My Watchlist, My Contributions...)
>
> I would like to know if we can hide these links? I just want to keep the
> Login or Logout link... Everything else: hide.
>
> Is it possible? If yes, where exactly? (I'm a newbie, so...)
>
> Thanks and advance!
>
> Pierre
>
>
> _______________________________________________
> MediaWiki-l mailing list
> [email protected]
> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>
_______________________________________________
MediaWiki-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to