Hi, I don’t want comments in my site. I’ve been able to disable/hide the “comments counter” in my posts and pages, but I’ve not been able to disable it from the author box. This is what I mean:
https://projectmanagers.org/author/pm-board/
How can I hide the “comments counter” from the author box?
Hello aberniz,
If you want to remove this option, you can try to use a bit of CSS code to hide it. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-author-counters .td-author-comments-count {
display:none;
}
The result -> http://screencast.com/t/f05fnljC5
Thanks.
Hello ronald,
Please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td_top_authors .td-author-comments-count {
background-color: red;
}
.td_top_authors .td_mod_wrap:hover .td-author-comments-count {
background-color: green;
}
The result you should see here -> http://screencast.com/t/niTMWbhCOT -> http://screencast.com/t/qt5OOHG9zw
Thanks for your understanding!
