I create a view (Page) to list content and the title of the view page is not showing up with Blumasters but I check with another theme and the title is there.

Is there something I can add or change in one of the .tpl.php file?

thanks

Comments

chocolatfrog’s picture

Title: No page title with a list view » No page title with a view
komal.savla’s picture

Hi,

To add the title in the page views you can add the following in the page.tpl.php :

<?php print $tabs;?>   
<?php if ($title) : ?><h2 class="title"><?php print $title; ?></h2><?php endif; ?> // Added this line
<?php print $content;?> 

And from the node.tpl.php, Remove the following lines :

<?php if (!((arg(0)=="taxonomy" && arg(1)=="term") || $page==0)): ?>
    <h2 class="page-title"><?php print $title?></h2>
<?php endif; ?>

Thanks,
Komal

giacinlui80’s picture

hi, I have the same problem. I tried to follow your steps but the view titles still do not see. Can you help? Thank you!

komal.savla’s picture

Hi,

Thats strange because it is working for me correctly.
Can you please check your view and see if you have added the title for the page in the Basic settings of view.

Thank you,
Komal