إيقاف عرض "المشاهدات" في الموضوع

how can i turn off the views on topic?

إعجاب واحد (1)

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)

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

إعجاب واحد (1)

You can right-click the counter and Inspect it.

إعجابَين (2)

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 إعجابات

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