I am currently using the Tripleship 'tanzaku' theme with some modifications made to the default design. I do not want people to be able to leave a comment on a page. Leaving comments on a post is fine, but leaving a comment on for instance the about page seems a bit silly to me. I have already disabled the possibility to leave a comment by unchecking the 'allow comments' on the edit page of the about page.
The message 'Sorry, the comment form is closed at this time.' that shows up when the 'allow comments' is left unchecked also has been removed by putting <!-- and --> before and after the php line in the comments.php file as follows:
<!--
<div class="comment-content">
<p><?php _e('Sorry, the comment form is closed at this time.'); ?></p>
</div>
-->
It's a bit crude as it means the message will never show up again even on a post, but it's the only thing I can do with my limited knowledge of php.
Right now a block with the title "no comments" still shows up on the about page. This has no purpose as leaving a comment has been disabled for this specific page. So I would like to get rid of it as well. This however seems impossible. I really don't know what or where to make changes.
If anybody can help me?
Thanks in advance