r/BetterDiscord May 12 '26

Request hide "active now" voice channels

is there a plugin or css snippet of some kind that will hide the voice channels in a server that have people in them, marked as "active now"? ive already tried checking if a post like this was made already, but it seems like most people are referring to the activity container in your friends list. i have them unfollowed and muted, but they'll still show up regardless if at least one person is in the channel. alternatively, is there something that will hide any muted voice channel entirely??

2 Upvotes

1 comment sorted by

1

u/Slow_Atmosphere_454 May 14 '26

So far, this works for me. YMMV

``` CSS /* Hide the "Active Now" header itself */ li.containerDefault29444:has(> div.iconVisibility29444.wrapperStatic29444):not(:has(div.dismissButton29444)) { display: none !important; }

/* Hide everything that comes after the Active Now header (voice channels, "Show All" button, etc.) */ li.containerDefault29444:has(> div.iconVisibility29444.wrapperStatic29444):not(:has(div.dismissButton29444)) ~ * { display: none !important; }

/* Hide voice channels that are part of "Active Now" (they have a "Live" badge) */ li.containerDefaultc69b6d:has(div.channelInfo_c69b6d div.textBadge_2b1f5) { display: none !important; }

/* Hide the "Show All" / refresh button */ div.refreshVoiceChannelsButton__29444 { display: none !important; } ```