# Можно ли в Unified New скрывать темы после того, как пользователь прокрутил их?

**URL:** https://meta.discourse.org/t/can-unified-new-dismiss-topics-after-a-user-scrolls-past-them/411807
**Category:** Feature
**Created:** [07.Сентябрь.2026 10:03:09 UTC](https://meta.discourse.org/t/can-unified-new-dismiss-topics-after-a-user-scrolls-past-them/411807 "2026-09-07T10:03:09Z")
**Posts on this page:** 1
**Showing post:** 4

<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: [07.Сентябрь.2026 11:08:20 UTC](https://meta.discourse.org/t/can-unified-new-dismiss-topics-after-a-user-scrolls-past-them/411807/4 "2026-09-07T11:08:20Z")

</div>

Это поможет?

> [@awesomerobot](#):
>
> - Настройка пользовательского интерфейса «домашняя страница по умолчанию» переопределяет пользовательскую главную страницу темы, поэтому небольшая кастомизация для использования этого параметра может сработать… что-то вроде
> 
> ```plaintext
> import { setDefaultHomepage } from "discourse/lib/utilities";
>   
> export default {
> name: "force-homepage",
> after: "url-redirects",
>   
> initialize(container) {
> if (container.lookup("service:current-user")) {
> setDefaultHomepage("latest");
> }
> },
> };
> 
> ```
> 
> &nbsp;&nbsp;затем вы можете просто скрыть эту настройку пользователя с помощью CSS

Здесь можно заменить "latest

---

_[View the full topic](https://meta.discourse.org/t/can-unified-new-dismiss-topics-after-a-user-scrolls-past-them/411807)._
