How to hide archived topics from latests but show them in other pages?

Is there a way to hide archived topics from “latest” so that they are still listed in their category but not on the startpage?

A close example is to put a special tag for them, such as “archived”. Then in the site settings, set the “archived” tag to muted for the whole site, so that they will not appear on the latest page, but can still be found in the corresponding tag page.

If this does not meet your requirements, consider using theme components and writing code similar to the following:

body:not(.category) tr.topic-list-item.tag-TAGNAME {
    display: none;
}
body.tag-TAGNAME tr.topic-list-item.tag-TAGNAME {
    display: table-row;
}
5 Likes

Works perfect. Thank you!

1 Like

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