<blockquote>How do I avoid the annoying ‘feature’ ? I would like to give a name to the frontpage different than the heading of my article.</blockquote>
Two solutions for you:
1) In menu parameters, choose “Show Page Title”=No
For this way, heading of your article will not display.
2)
– To setting heading of your article on the frontpage, open file: templates\htmlcom_contentfrontpagedefault.php, you’ll see the code:
[PHP]
<?php if ($this->params->get(‘show_page_title’,1)) : ?>
<h1 class=”componentheading<?php echo $this->escape($this->params->get(‘pageclass_sfx’)); ?> clearfix”>
<?php echo $this->escape($this->params->get(‘page_title’)); ?>
</h1>
<?php endif; ?>
[/PHP]
and replace it as you want, such as:
[PHP]
<h1 class=”componentheading clearfix”>
<?php echo JText::_(‘Featured Articles’) ?>
</h1>
[/PHP]
– Setting title to the frontpage in the menu parameters.