XF 2.3 Search page tabs display

MJ0730

Active member
Some addons have added a bunch of tabs in the scroll bar that I don't want. Where are these being added at?

Capture.webp
 
If I recall, there's no easy toggle for these tabs. This thread discussions some solutions:


If you take the CSS approach in #8, the code provided does work you just need to modify your code to make sure you target the right URL. As an example, that code would not work on these forums, you'd need to add the /community/

Code:
html[data-template="search_form"] div.p-body-pageContent form[action="/community/search/search"]
{
    & a[href="community/search/?type=xfmg_album"],
    & a[href="community/search/?type=xfmg_comment"]
    {
        display: none;
    }
}
 
Back
Top Bottom