# Is there a way to hide Seen column?

**URL:** https://meta.discourse.org/t/is-there-a-way-to-hide-seen-column/93411
**Category:** Support
**Created:** [7월 29, 2018, 2:08오후 UTC](https://meta.discourse.org/t/is-there-a-way-to-hide-seen-column/93411 "2018-07-29T14:08:55Z")
**Posts on this page:** 1
**Showing post:** 17

<div class="post-metadata">

### Author: ![j127](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j127/32/79093_2.png) [@j127](https://meta.discourse.org/u/j127)
#### Post date: [1월 19, 2025, 4:38오후 UTC](https://meta.discourse.org/t/is-there-a-way-to-hide-seen-column/93411/17 "2025-01-19T16:38:57Z")

</div>

고맙습니다. 잘 작동합니다.

**수정:** 대소문자를 구분하지 않도록 다음과 같이 변경했습니다:

```html
<script type="text/discourse-plugin" version="1.4.0">
    function shouldHideLastSeen() {
        const p = location.pathname.toLowerCase();
        return p === "/u/username" || p.startsWith("/u/username/");
    }

    function hideLastSeen() {
        if (shouldHideLastSeen()) {
            document.querySelectorAll(".last-seen-at").forEach(el => el.remove());
        }
    }

    api.onPageChange(hideLastSeen);
    document.addEventListener("DOMContentLoaded", hideLastSeen);
</script>

```

---

_[View the full topic](https://meta.discourse.org/t/is-there-a-way-to-hide-seen-column/93411)._
