Hi,
i want to delete "no comments" and "comments are closed".I've tried to delete this - <?php if(is_single()) { comments_template(); } ?> from the page.php :
<?php if(is_single()) { include (TEMPLATEPATH . '/post_info.php'); } ?>
<?php if(is_single()) { comments_template(); } ?>
<?php endwhile; ?>
but the comments are still on the page.
I've tried to delete this - <p class="nocomments">Comments are closed.</p> from the comments.php
<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<p class="nocomments">Comments are closed.</p>
but the comments are stil there.