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 🙂
Popup link takes five parameters.
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.You can also hide it via css, something like:
.comments_closed p { display: none; }
Try editing theme files and remove the php comments links, or add CSS to display:none to the comments div in your style sheet. But no one can help specifically unless you post some code.