[Mediawiki-l] How to change "Main Page" displayed on home page?

Alexis Moinet alexis.moinet at fpms.ac.be
Mon Nov 27 10:07:07 UTC 2006


Tim Ware a écrit :
> How can I change the "Main Page" text that's displayed at the top of  
> the home page? I don't want to change the URL, just the name that's  
> displayed. Thanks!
> 
> Tim

If you have write access to skins/monobook.php, you can change this line :

<h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->html('title'):$this->text('title') ?></h1>

into

<?php if ( $this->haveData('title') == wfMsgForContent('mainpage') ){ ?>
	<h1 class="firstHeading"> Your text </h1>
<?php } else { ?>
	<h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->html('title'):$this->text('title') ?></h1>
<?php } ?>




More information about the MediaWiki-l mailing list