When there are no comments, the header for comments appears right above the comment form, but there is no body to it because there are no comments - see picture - http://www.eypaedesign.com/untitled.jpg - so I'm trying to have that comment header not show if there are no comments. Either that, or some text below that comments header saying 'no comments yet' or something to that effect. Any ideas?

Also, let me know if I should post this in the Comments module area.
Thanks!

Comments

MYCON-1’s picture

I'm gonna try commentblock, anyone feel free to holler if you know another module that can help me so i can be lazy :)

jarek foksa’s picture

You have to overwrite comment-wrapper.tpl.php so that comment header is displayed only when $node->comment_count != 0:

<?php if ($content): ?>
  <div id="comments">

    <?php if ($node->comment_count != 0): ?>
      <h2 id="comments-header"><?php print t('Comments'); ?></h2>
    <?php endif; ?>

    <?php print $content; ?>
  </div>
<?php endif; ?>