Remove Post and Comment Count Blocks on Author pages and widgets

Posted in: Newspaper
Post count: 28

Could you help us remove the blocks that show post and comment count for individual author widgets and for the actual author pages? Our CSS efforts produced no results. Thanks!

Post count: 1341

You can try this code. Enter it in Theme panel -> Custom Css

/* Remove posts and comments counts in blocks and author widgets */
.author .td-author-post-count {
display: none;
}
.author .td-author-comments-count {
display: none;
}
.td_top_authors .td-author-post-count {
display: none;
}
.td_top_authors .td-author-comments-count {
display: none;
}

Post count: 28

That worked, thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.