I would like to have an indication that articles have a specific number of comments and/or new comments as shown at: http://www.signalkuppe.com/

on my site i do not see this ..

Comments

blogook’s picture

solved ..

how?

open : node--teaser.tpl.php

find:

<?php if ($display_submitted): ?>
    <strong class="teaser-author"><?php print t('Posted By'); ?></strong> <?php print $name; ?> 
  <?php endif; ?>

Change to:

  <?php if ($display_submitted): ?>
    <strong class="teaser-author"><?php print t('Posted By'); ?></strong> <?php print $name; ?> <?php print render($content['links']['comment']); ?>
  <?php endif; ?>