what is actually the question?
what theme are you using?
link to your site?
http://drwho-fansite.site90.com/wordpress/ i made a post and i added this but people can comment i dont want that for the home page
Do you want to keep people from commenting entirely or just remove the comment bubble? If the former, you just turn off comments in the individual post or in Settings > Discussion.
If the latter, you would need to remove or comment out that part of the theme to actually remove it. It’s this this part in content.php:
<?php if ( comments_open() ) : ?>
<div class="comments-link">
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
</div>
<?php endif; ?>
An easier option would be to just hide it; you could add this to the bottom of your style.css file:
.entry-header .comments-link {
display: none;
}
cool the bubbles ok but i might get rid of it. but i want to stop people from commenting on certain things. thanks