Ok... it's solved. But I made a hack of the component: in views, category, tmpl, I changed the default.php from:
Code: Select all
// Heading
$heading = '';
if ($this->params->get( 'page_title' ) != '') {
$heading .= $this->params->get( 'page_title' );
}
if ( $this->tmpl['displaycatnametitle'] == 1) {
if ($this->category->title != '') {
if ($heading != '') {
$heading .= ' - ';
}
$heading .= $this->category->title;
}
}
to:
Code: Select all
$heading = '';
if ( $this->tmpl['displaycatnametitle'] == 1) {
if ($this->category->title != '') {
$heading .= $this->category->title;
}
}
That way, the heading is correctly displayed with the menu module of phoca BUT the heading of galleries shown via a normal menu point is not shown... The problem is not completely solved... for me it's ok, but could made problems for others.
Could be a possible improvement of the menu module to define the heading that should be displayed.