I've placed a link in the view to read more but sometimes there isn't anything more to read which if I was a user would irritate me after a while.

Comments

mtpultz’s picture

Even a place to add php to say yes add a read more link or no don't. I have it set to show a teaser but the teaser in a couple places is the whole node so I didn't put in the break. But then having a read more button seems a bit of a waste or an annoyance. Any ideas?

krisna123’s picture

maybe u can use "read more link" module

http://drupal.org/project/ed_readmore

or u can add some code to your theme to display read more link.

for exmaple
add this code to the bottom of your "node.tlp.php"
u can find node.php.tpl at "yourfoldertheme"

it will show "Read More" link to all your node

<?php if ($page == 0): ?>
  <div class="links"><a href="<?php print $node_url ?>" title="Read More">Read More</a></div>
<?php endif; ?>
pgough’s picture

Where do you place this?