Tutorial - How to remove "comments are closed" from ads
Problem:
I have comments closed on ads and open on pages and blog posts. This results in the annoying "comments are closed" message to appear at the bottom of every ad.
Sollution:
Open the
classipress/single-default.php file, and look for the following line:
Code:
<?php comments_template(); ?>
Simply add two backslashes to it like so:
Code:
<?php //comments_template(); ?>
Ta Da! That's it.
The annoying "comments are closed" message will no longer appear at the bottom of every ad. And, if you ever choose to turn comments back on, simply remove the backslashes.
A similar proccess will do the same for other pages as well.