How do I remove the comment count on author cards? I have disabled all comments to my site and so this counter is not useful for me.
Image: Google Drive
Hi,
The screenshot you provided cannot be viewed – https://prnt.sc/w2d3zv I believe there are issues with Gmail and Google drive at the moment. Our email does not work as well.
Are you referring to the author box displayed in the post page? Could you provide a link to where the count is displayed on the website just to be sur? If there is no setting to remove it, some CSS would work just as well.
Thank you!
Hmm…that’s weird! I just checked and it’s working on my end.
Here is a link to an example: https://test.eliwoods.org/author/hmholden/
Also, how do I change the hover color with CSS from blue to red (my theme color). I can’t seem to change it. You can see it here https://test.eliwoods.org/staff/.
Hi hewmedia, this https://i.imgur.com/aVU0OJU.png can be removed only with custom css like this one -> https://i.imgur.com/aZZ8DRE.png
.author .td-author-comments-count{
display: none;
}
This code need to be set in theme panel> custom code> custom css.
Also the second request can be also do only with custom css https://i.imgur.com/fZVHF8V.png
.page .td_top_authors .td_mod_wrap:hover .td-authors-name a {
color: red;
}
.page .td_top_authors .td_mod_wrap:hover .td-author-comments-count, .page .td_top_authors .td_mod_wrap:hover .td-author-post-count{
background: red;
}
The code need to be set in the same place like the one above.
Thank you!
Hi hewmedia, so, now you no longer want to have the post and comment count on author card, if is so, then replace this code
.author .td-author-comments-count{
display: none;
}
with this one https://i.imgur.com/7fLQGfK.png
.author .td-author-post-count, .author .td-author-comments-count{
display: none;
}
Let me know the results!