Hide "comments counter" from the author box

Posted in: Newspaper
Post count: 82

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?

Post count: 23312

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.

Post count: 61

Can I remove the comments and post count from the author box which you can select in Visual composer? If not. Can I give them a different colour?

Post count: 82

I am not sure what you mean.

I implemented the CSS that Catalin provided me above and it worked great!

This topic was solved.

  • This reply was modified 9 years by aberniz.
Post count: 61

The visual composer author box is a different function. You can use it with the page builder.

Post count: 23312

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!

Post count: 61

Thanks! and for the posts it is: “td-author-post-count”

Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.