another little problem:
my post footer on the index page shows the comment count (3 comments, no comments etc) but the post page does not, it has the same footer code, yet it does not show, any ideas?
i found the solution to my problem:
if ur page has the following
Code:
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
then replace it with:
Code:
<?php comments_number('No Comments','1 Comment','% Comments'); ?>
Note: it will not be a hyperlink so use it on the single post.php file only