how can i turn off the views on topic?
I don’t think you can turn it off entirely. If you want to hide the counter, though, you can do so with CSS.
do you know what the specific css code is for that?
You can right-click the counter and Inspect it.
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.
