Hide category stats

Any idea how to hide the category stats? I think the way to hide them has changed in recent versions.

.categoryStats{
display: none;
}

this no longer works.

thanks!

image

Your screenshot looks like you want to target those stats for subcategories. If that’s the case, this is the CSS you would use:

.category-list .subcategories .badge-notification.new-posts {
  display: none;
}
5 Likes

Thank you, this does the trick!

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.