Thanks in advance for any help on this.

I still want to display the title of page content; but not as a link. Story content i would like to keep the title as a link to the story node.

I believe the answer is (please laugh as much as you want at my VERY pseudo code) "if content type = page then no not display it as a link" in node.tpl.php file.

Using v4.7.3 with modified Bluemarine theme.

Thanks again,
Sc0tt

Comments

zroger’s picture

Replace the following lines from node.tpl.php in the bluemarine theme (line breaks for clarity)

<?php if ($page == 0) { ?>
    <h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2>
<?php }; ?>

with this

<?php if ($page == 0 && $node->type=='page') { ?>
    <h2 class="title"><?php print $title?></h2>
<?php }elseif($page == 0){ ?>
    <h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2>
<?php }; ?>
Sc0tt’s picture

This worked perfectly!

Can I buy you lunch rz?
Sc0tt

jsolanaGBT’s picture

This works also for Drupa 6.x... Thank you so much!