-
-
Save cheesits456/41d659f932b5a574b5dfb9b391a4506e to your computer and use it in GitHub Desktop.
@BrambleTakato
here is my generalized take on it, which doesn't need updating when the class-name changes, unless they also change the structure:
(yes, I could have just gone for class*="footer_" since it hasn't appeared anywhere else yet, but I'd like to have it more specific to not break anything else)
/* Public server thing, new, always visible BS. */
div[class*="footer_"]:has(> div > div[class*="listItemWrapper_"])
{
display:none;
}
@BrambleTakato here is my generalized take on it, which doesn't need updating when the class-name changes, unless they also change the structure: (yes, I could have just gone for class*="footer_" since it hasn't appeared anywhere else yet, but I'd like to have it more specific to not break anything else)
/* Public server thing, new, always visible BS. */ div[class*="footer_"]:has(> div > div[class*="listItemWrapper_"]) { display:none; }
This works quite nicely, thank you! Kind of a pain that they kept trying to change the class-name :(
@BrambleTakato here is my generalized take on it, which doesn't need updating when the class-name changes, unless they also change the structure: (yes, I could have just gone for class*="footer_" since it hasn't appeared anywhere else yet, but I'd like to have it more specific to not break anything else)
/* Public server thing, new, always visible BS. */ div[class*="footer_"]:has(> div > div[class*="listItemWrapper_"]) { display:none; }
This works quite nicely, thank you! Kind of a pain that they kept trying to change the class-name :(
yeah that is why I try to keep the selectors generic, but "specific enough" to not cause issues elsewhere.
it will take more computing this way, but should be neglectable with most modern systems, but it will not break when class names change.
it's technically not (directly) their fault that class names change.
when they re-compile the whole app, the compiler will create those class names automatically and without regard for what the class names were previously.
if you don't mind it being language dependent you can just do this and be done with it:
/* Hide Nitro gift button, language dependent*/ button[aria-label="Send a gift"] { display: none; }
For the other buttons you could use:
/* Hide gif picker button, language dependent*/ button[aria-label="Open GIF picker"] { display: none; } /* Hide sticker picker button, language dependent*/ button[aria-label="Open sticker picker"] { display: none; }
finding those entries is actually fairly easy as long as you can access the dev tools - F12 in most browsers, [ctrl] + [shift] + [i] in vencord, then use [ctrl] + [shift] + [c] to "select" the object you want to inspect. it'll show you the item in the tree. that wont change with manifest v3...
didn't expect this to work, thanks!
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;
}
Hey! Came to give a heads up (since I was helped before, I want to return the favor); They changed the .footer for the Discover button. Just change this;
.footer_aa1bff{
display:none;
}
To this;
.footer_d71945{
display:none;
}