i have Hide Recommended Channels on but it still is showing them Hide
i have even reload the page
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.
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.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.