# Turn off the “views” on topic

**URL:** https://meta.discourse.org/t/turn-off-the-views-on-topic/338900
**Category:** Support
**Created:** [November 28, 2024, 2:28am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900 "2024-11-28T02:28:51Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![willie](https://avatars.discourse-cdn.com/v4/letter/w/838e76/32.png) [@willie](https://meta.discourse.org/u/willie)
#### Post date: [November 28, 2024, 2:28am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/1 "2024-11-28T02:28:51Z")

</div>

how can i turn off the views on topic?

 ![IMG_8778](https://global.discourse-cdn.com/meta/original/4X/a/5/3/a53075a83654974ca83b5f56a1b3d65728a9c900.jpeg)

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [November 28, 2024, 3:31am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/2 "2024-11-28T03:31:25Z")

</div>

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

> [@Making custom CSS changes on your site](https://meta.discourse.org/t/making-custom-css-changes-on-your-site/168101):
>
> bookmark This guide explains how to make CSS changes on your Discourse site, including an introduction to CSS, where to add CSS in Discourse, and how to find the right selectors using browser inspection tools. person_raising_hand Required user level: Administrator Summary This guide covers: A brief introduction to CSS and key concepts How to add CSS to your Discourse site using theme components Using browser inspection tools to find the right CSS selectors Understanding CSS basics C…

---

<div class="post-metadata">

### Author: ![willie](https://avatars.discourse-cdn.com/v4/letter/w/838e76/32.png) [@willie](https://meta.discourse.org/u/willie)
#### Post date: [November 28, 2024, 3:35am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/3 "2024-11-28T03:35:40Z")

</div>

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

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [November 28, 2024, 3:36am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/4 "2024-11-28T03:36:10Z")

</div>

You can right-click the counter and Inspect it.

---

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [November 28, 2024, 3:48am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/5 "2024-11-28T03:48:40Z")

</div>

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

```scss
.topic-map __contents .topic-map__ stats .fk-d-menu__trigger {
    display: none;
}

```

If you want to do it for specific category:

```scss
.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.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [December 28, 2024, 3:49am UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/6 "2024-12-28T03:49:04Z")

</div>

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