Betterttv: Hide Recommended Channels

Created on 8 Jul 2020  路  4Comments  路  Source: night/betterttv

i have Hide Recommended Channels on but it still is showing them Hide
i have even reload the page

https://prnt.sc/tdqs75

bug

Most helpful comment

Can confirm, Twitch released an updated site today that removes the content specific class .recommended-channels, and any other content specific identifiable classes. The only way I can see to address this is an nth-of-type selector, which is fragile.

div.side-bar-contents div.side-nav-section:nth-of-type(2) {
    display: none !important;
}

I don't know if night would want to use that for that reason. I include it here for reference and for anyone who wants to use stylus to fix it, understanding it could break at any time.

All 4 comments

Can confirm, Twitch released an updated site today that removes the content specific class .recommended-channels, and any other content specific identifiable classes. The only way I can see to address this is an nth-of-type selector, which is fragile.

div.side-bar-contents div.side-nav-section:nth-of-type(2) {
    display: none !important;
}

I don't know if night would want to use that for that reason. I include it here for reference and for anyone who wants to use stylus to fix it, understanding it could break at any time.

Firefox v78.0.1 for Ubuntu 20.04 LTS. Can confirm, same issue.

Well, for now I added adblock custom rule:

twitch.tv##.side-nav-section:nth-of-type(2)

Well, for now I added adblock custom rule:

twitch.tv##.side-nav-section:nth-of-type(2)

This filter is working right now. Thank you.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

KauzDs picture KauzDs  路  3Comments

dutchgecko picture dutchgecko  路  3Comments

xzPr picture xzPr  路  5Comments

TheLucky007 picture TheLucky007  路  3Comments

KoopaTheTurtle-zz picture KoopaTheTurtle-zz  路  5Comments