I managed to get the "Posted by" links removed from the actual content pages, but they still show up on the home page? I am also trying to find a way to remove the "more", "read more" and the link to the rss feed on the home page. Sorry for my ignorance if this is not a theme issue/question.

The site is at www.johnnystork.ca

Comments

Lioz’s picture

Status: Active » Fixed

see http://drupal.org/node/1023996

if you want to hide the readmore link you can use something like this in node--teaser.tpl.php

  <div class="teaser-meta">
  <?php if ($display_submitted): ?>
    <strong class="teaser-author"><?php print t('Posted By'); ?></strong> <?php print $name; ?>
  
  <span class="teaser-readmore"><?php print l(t('read more'), 'node/' . $nid, array('attributes' => array('class' => t('node-readmore-link')))); ?></span>
<?php endif; ?>
  </div>
BigBirdy’s picture

Thanks kindly, that did the trick. :)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.