Search code examples
drupal-7teaser

How to add missing read-more link to drupal 7 teaser


When customizing a drupal 7 theme about a year ago I removed the code that displays the read-more link at the end of teasers.

I need to add this code back to show the read-more links now, but I have totally forgotten where to put this code in.

Any help?

Thanks


Solution

  • Look for a file in your template with suffix *-teaser.tpl.php and in proper location add like this example or another example of marinellie theme

        <span class="teaser-readmore"><?php print l(t('read more'), 'node/' . $nid, array('attributes' => array('class' => t('node-readmore-link')))); ?></span>
    

    Another solution is look for how was it implemented it your main theme ( looking for *--teaser.tpl.php and just copy/paste read_more section)