How do I remove the double title in the theme? Each node has two titles: a nice title and a linked title, but it is redundant and confusing to link back to the same page you are reading. I tried removing the linked title from the node.tpl.php, but this also removes the link from the teasers when viewing a category of articles.

Comments

Anonymous’s picture

I compared the node.tpl.php for multiflex with the node template from another theme and found two lines of code that needed to be added to make the appearance of the second title conditional. Find:

 <p class="content-title-shade-size3 bg-blue07 box-on">&nbsp;</p>
   <p class="content-title-shade-size3 bg-blue03 txt-white"><a href="<?php print $node_url ?> " title="<?php print $title ?>"><?php print $title ?></a></p>

And add this line right before:

<?php if ($page == 0): ?>

And this line right after:

<?php endif; ?>

Once I added these, the problem was solved.

PipSqueak’s picture

Thanks Dan, that works! :)