In my new comments, a "2" appears as its own line before the body the first time I read a comment. This is obviously some sort of "new" indicator that's not connecting at some point. I'd like to either connect it or drop it, but I can't find the code in comment./module. Can anyone point me the right way? Thanks!

Comments

silverwing’s picture

I'll assume you haven't tinkered with comment.module.

Check the theme's comment.tpl (if you're using a phptemplate theme and look for this

 <?php if ($comment->new) : ?>
  <a id="new"></a>
  <span class="new"><?php print $new ?></span>
<?php endif; ?>

and check the style.css file for .new.

If that fails, you could try uploading a new comment.module to your server.

silverwing

estebandido’s picture

Thanks! My comment.tpl.php didn't have an "if" statement, so I put one in. Now it works great!