# Ocultar título do tópico no cabeçalho

**URL:** https://meta.discourse.org/t/hiding-topic-title-in-header/118268
**Category:** Support
**Created:** [21 Maio , 2019 01:54 UTC](https://meta.discourse.org/t/hiding-topic-title-in-header/118268 "2019-05-21T01:54:33Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Gershon](https://avatars.discourse-cdn.com/v4/letter/g/da6949/32.png) [@Gershon](https://meta.discourse.org/u/Gershon)
#### Post date: [21 Maio , 2019 01:54 UTC](https://meta.discourse.org/t/hiding-topic-title-in-header/118268/1 "2019-05-21T01:54:33Z")

</div>

Hi, I have been using the fix in the following thread: [https://meta.discourse.org/t/is-it-possible-to-disable-topic-title-in-header/75502/3](https://meta.discourse.org/t/is-it-possible-to-disable-topic-title-in-header/75502/3)

```
<script type="text/discourse-plugin" version="0.8.13">
api.modifyClass('component:discourse-topic', {
    showTopicInHeader() {
        return false;
    }
})

```

But as of the new Discourse update v2.3.0.beta9 +469 it does not seem to hide the topic title anymore.

Any help is appreciated, thanks!

---

<div class="post-metadata">

### Author: ![Osama](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osama/32/98013_2.png) [@Osama](https://meta.discourse.org/u/Osama)
#### Post date: [21 Maio , 2019 02:36 UTC](https://meta.discourse.org/t/hiding-topic-title-in-header/118268/2 "2019-05-21T02:36:09Z")

</div>

Hi @Gershon

Try this, it should work with latest discourse:

```html
<script type="text/discourse-plugin" version="0.8.13">
    api.modifyClass('component:discourse-topic', {
        shouldShowTopicInHeader() {
            return false;
        }
    })
</script>

```

---

<div class="post-metadata">

### Author: ![Gershon](https://avatars.discourse-cdn.com/v4/letter/g/da6949/32.png) [@Gershon](https://meta.discourse.org/u/Gershon)
#### Post date: [21 Maio , 2019 22:46 UTC](https://meta.discourse.org/t/hiding-topic-title-in-header/118268/3 "2019-05-21T22:46:41Z")

</div>

> [@Osama](#):
>
> shouldShowTopicInHeader

Thank you Osama! That fixed it.

---

<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: [20 Junho , 2019 22:46 UTC](https://meta.discourse.org/t/hiding-topic-title-in-header/118268/4 "2019-06-20T22:46:42Z")

</div>

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