flaky How can I remove filter options without touching the core? For example, I want to show only "latest" and "popular" options on the home page. Is this possible without touching the core structure? I don't want to touch the kernel if possible, but what file do I need to edit if there is no alternative? Thanks.
flaky askvortsov How exactly can I do that? I have enough CSS knowledge to edit, but I could not understand which classes to use.
clarkwinkelmann flaky since the list items in the dropdown don't have specific classes, you can use the element order. Like li:nth-child(2). If an extension adds a new element, the actual element index might change though. But in normal Flarum I think all items always are in the same order.
[deleted] If you want to remove whole toolbar .IndexPage-toolbar { display: none; } .TagsPage-toolbar { display: none; } IF only want to remove filter .IndexPage-toolbar-view { display: none; } .TagsPage-toolbar-view { display: none; }