Is there a way to "unlink" the content title on home page content?
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
That's perfect!
Comments
Yes, in the theme layer. In
Yes, in the theme layer. In your node.tpl.php file, you have something like this:
Just change that to a non-anchored link.
Hope that helps!
__________________________________________________________
Mark Theunissen
(work) Digital People
(personal) Code Baboon
THANK YOU!
That's perfect!