[Copenhagen Theme] hide comment count in Recent Activity? | Community
Skip to main content

[Copenhagen Theme] hide comment count in Recent Activity?

  • August 26, 2022
  • 2 replies
  • 0 views

Hi,

None of my articles are open for comments, but the Recent Activity section on the homepage in the Copenhagen theme still shows a comment count. I can hide the recent activity completely but would like to only hide the comment count and have checked both the HTML and the CSS but could not find out how.

Is it possible to just hide the comment count and if so, how?

Thanks you in advance 😊

2 replies

  • August 26, 2022

Looking at the HTML structure, I feel like you could just hide this with some CSS that targets the div.recent-activity-item-comment elements.

Here's some CSS (I didn't test it though, but I'm pretty certain it will work):

div.recent-activity-item-comment {
display: none;
}

  • Author
  • August 26, 2022

Thank you so much, this indeed did the trick!