Turn off the “views” on topic

how can i turn off the views on topic?

1 Like

I don’t think you can turn it off entirely. If you want to hide the counter, though, you can do so with CSS.

2 Likes

do you know what the specific css code is for that?

1 Like

You can right-click the counter and Inspect it.

2 Likes

If you just want to hide it, then I think you can use this (in common-CSS of theme or theme component):

.topic-map__contents .topic-map__stats .fk-d-menu__trigger {
    display: none;
}

If you want to do it for specific category:

.category-[your-category-slug] {
.topic-map__contents .topic-map__stats .fk-d-menu__trigger {
    display: none;
  }
}

…and yes, I pretty much did what @NateDhaliwal said above to get that. The link he posted above tells you how to make those kind of modifications.

5 Likes