Hi all,

I want to hide the node title on specific pages only. I have found code that makes it so you can hide the title on ALL pages, but I only want to hide the title on three of my pages, preferably by using their NID.

Does anyone know how to do that?

Comments

3cwebdev’s picture

I think this will work (although untested):

In your theme's node.tpl.php file, find where the title is output and use something similar to

  <?php if (!$page and $node->nid != YOUR-NODE-ID-HERE and $node->nid != YOUR-NODE-ID-HERE): ?>
    <h2 class="title">
      <a href="<?php print $node_url; ?>" title="<?php print $title ?>"><?php print $title; ?></a>
    </h2>
  <?php endif; ?>