Is there a way to "unlink" the content title on home page content?

Comments

Mark Theunissen’s picture

Yes, in the theme layer. In your node.tpl.php file, you have something like this:

  <?php if (!$page): ?>
    <h2 class="title">
      <a href="<?php print $node_url; ?>" title="<?php print $title ?>"><?php print $title; ?></a>
    </h2>
  <?php endif; ?>

Just change that to a non-anchored link.

Hope that helps!

__________________________________________________________

Mark Theunissen

(work) Digital People
(personal) Code Baboon

tawebworks’s picture

That's perfect!