-
-
Save cheesits456/41d659f932b5a574b5dfb9b391a4506e to your computer and use it in GitHub Desktop.
For anyone else looking to get rid of the Apps button the same way, the aria-label is literally just "Apps", so:
/* Hide apps button, language dependent*/
button[aria-label="Apps"] {
display: none;
}
For anyone else looking to get rid of the Apps button the same way, the aria-label is literally just "Apps", so:
/* Hide apps button, language dependent*/ button[aria-label="Apps"] { display: none; }
alternatively, not language dependent:
/* remove bs app-launcher button */
div[class^="channelAppLauncher_"]{
display:none !important;
}
Any way to hide "Events" without hiding the Channels & Roles and whatnot in other servers? Driving me absolutely insane that it's pinned in every single server I own, I have never used it even once in my life. :/
Contribution:
When you have a chain of quote replies and it yells at you to make a thread:
/* Stop nagging about threads /
[class="threadSuggestionBar_"] {
display: none; }
Any way to hide "Events" without hiding the Channels & Roles and whatnot in other servers? Driving me absolutely insane that it's pinned in every single server I own, I have never used it even once in my life. :/
Contribution: When you have a chain of quote replies and it yells at you to make a thread:
/* Stop nagging about threads / [class="threadSuggestionBar_"] { display: none; }
try this one:
div[class^="containerDefault_"]:has(div[data-list-item-id^="channels___upcoming-events"]){
display:none;
}
Initially looking for a plugin then realised this thread. Took me back to the MySpace hack days :)
Here my crusty contribution of overrides since the "2025 visual refresh".
Very nice to realise I could manually mod away at will, thank you!
/* Hide Unused Nonsense */
.expression-picker-chat-input-button:not(div[class*="vc-chatbar-button"]),
button[aria-label="Send a gift"],
div.channelAppLauncher_e6e74f,
.listItemWrapper__91816,
.unreadMentionsIndicatorBottom_ef3116,
.unreadMentionsFixedFooter_ef3116 {
display:none !important;
}
/* Adjustments */
section[aria-label="User area"] {
bottom: 23px !important;
}
.sidebarList_c48ade,
.chat_f75fb0[data-has-border=true],
.searchBar__97492,
.container_c8ffbb {
border: none !important;
}
.wrapper_cc5dd2 > svg{
filter: saturate(0);
}
Note
Bare in mind I do not use the desktop Discord client, but Vencord, so your mileage may vary.
anyone has one for the promoted games button?
anyone has one for the promoted games button?
Promoted Games are nested under "Apps"; see above.
didn't expect this to work, thanks!