I have a sticky note at top of main page and wish to remove the title link only for this sticky note.

Any ideas?
Gary

Comments

neokrish’s picture

create a new node-front.tpl.php and add a if (!$sticky) clause to the $title variable and you are all set.

Anonymous’s picture

Can you expand your "create a new" response.
Just trying to put the pieces together.

neokrish’s picture

1. in your theme folder, create a new node-front.tpl.php and copy the contents from node.tpl.php
2. you will see something similar to

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

in your node-front.tpl.php

3. Notice the <h2> line there, which is printing your node title. You need to add the if clause here like this

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

4. save it and if it doesnt reflect the change, clear your cache in admin/settings/performance or visit the theme page once