is it possible to hide the string: “Comments are disabled” from everywhere?

I mean also from posts list, and post page 🙂

Thanks 🙂

EDIT:

sorry, the theme is Journal Cruch by Site5.com

However I resolved using

if (comments_open())
    comments_popup_link();

where the comments are displayed, but I don’t like too much this solution 🙂

3 Answers
3

Popup link takes five parameters.

comments_popup_link('No Comments','One Comment','Many Comments','CSSclass','Comments Disabled');

So you are on to the correct solution. Now just change the above strings to whatever you want them to be for each # of comments. Finally change ‘Comments Disabled’ to just ''. Or perhaps ' ' if it requires you to put something in there.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *