I want to be able to eliminate completely the comments box that appears at the bottom of pages and posts on a wordpress Blog. I don't mean simply switching off the option - I don't even want it to appear as an option. Does anyone know how to do this or know of a suitable plugin that would do it for me?
About the most simple thing possible is to remove the code that includes the comment template in the template files. (mainly files like single.php, page.php varies depending on theme used) Check all your theme files for the following piece of code : <?php comments_template(); ?> Code (markup): All you have to do is remove that piece of code and the comments bit will not show up on posts or pages.