#remove things snippets by me

1 messages · Page 1 of 1 (latest)

flat sparrow
#

I made a few small snippets to hide some buttons and unnecessary things:

Hide the message box from the profile

/* Hide the "message @name" box from profile */
.footer__5be3e {
    display: none;
}```

Hide the "Add Friend" button from the profile
```css
/* hide "Add Friend" button from profile */
.bannerButton_fb7f94[aria-label="Add Friend"] {
    display: none;
}```

Hide the "🔊 Show All" button from the bottom of the channel list
```css
/* Hide "🔊 Show All" button */
.refreshVoiceChannelsButton__29444 {
    display: none;
}```

Hide the "X IN VOICE" bar from the channels list
```css
/* Hide "X IN VOICE" bar */
.voiceBar__7aaec {
    display: none;
}```

~~Hide the "Edit Channel" button from the channel list
```css
/* Hide the "Edit Channel" button */
[class^=actionIcon_]:has(>[d^="M10.56 1.1c-.46.05-.7.53-.64.98.18"]) {
    display: none;
}```~~

Hide the "Edit Image with Apps" button when you hover over images
```css
/* Hide "Edit Image with Apps" button */
div[aria-label="Edit Image with Apps"] {
    display: none;
}```

Hide the "Delete" button when you hover over images
```css
/* Hide "Delete" button from images */
div[aria-label="Remove Message Attachment"] {
    display: none;
}```

or hide all buttons when you hover over images ("Edit Image with Apps" and "Delete" buttons)
```css
/* Hide all buttons when you hover over images */
.hoverButtonGroup__06ab4 {
    display: none;
}```

Feel free to tell me I did them wrong and how to make them better.
Or if there were already been made, because Discord's search sucks.
flat sparrow
#

remove things snippets by me

flat sparrow
#

the "Edit Channel", "Create Invite"/"Invite to Server" buttons in the channel list were replaced with "..." (Channel Options), so:

/* Hide the "..." Channel Options button from Channels List */
.iconNoChannelInfo_c69b6d,.iconWithChannelInfo_c69b6d {
    display: none !important;
}```
flat sparrow
#

Hide the "Invite to Server" button at the top next to the server name

/* Hide the "Invite to Server" button */
.inviteButton_f37cb1 {
     display: none !important;
}```
flat sparrow
#

Hide the "Close DM" button from DMs

/* Hide the "Close DM" button */
.closeButton__972a0 {
    display: none !important;
}```
livid glade
#

@flat sparrow why use attribute selectrons with hashed class names

flat sparrow
fossil wing
flat sparrow
#

I'm not sure why Discord decided we need these Back & Forward buttons

/* Hide the "Back & Forward" buttons */
.backForwardButtons__63abb {
    display: none !important;
}```
fossil wing
#

oh that's cool

#

there's already the keyboard shortcuts so not really necessary, but

#

Here's the experiment dev://experiment/2025-08_back_forward

heavy jay
#

can you make a snipped to remove the (edited) text please??

fossil wing
heavy jay
#

It ruins the aesthetic in my personal server, thank you very much!

#

The padding it has when a heading text is edited still exists, is it possible to remove that?

#

-# for example, if this is edited

fossil wing
#

test

#

-# test

#

doesn't seem like it

#

I don't know why it's like that

heavy jay
#

i see i see, thanks anyway ^^

hushed pond
#

Can you make a snippet to remove the output options from here?

flat sparrow
#

this, but the mic button has rectangular corners instead of rounded ones, since it's missing the right side part

better one below :)

Obsidian may have a better solution

fossil wing
flat sparrow
#

Updated most of my things above for the latest Discord changes

and the last snippet from Obsidian, use Obsidian's again, not this ⤵️

._37e49614b9f110a9-micButtonParent>._37e49614b9f110a9-buttonChevron {
  display: none;
}
._37e49614b9f110a9-micButtonParent>._37e49614b9f110a9-micButtonWithMenu {
  border-radius: var(--radius-sm);
}```
hushed pond
#

I see it fine without updating the code

flat sparrow
#

If the original snippet still works for you, your Discord probably wasn't updated yet.
I was fine a few hours ago, then I restarted Discord, and it was a mess.
Themes and a lot, probably all, snippets need to be updated

hushed pond
#

Yeah, just now got the update

#

Thanks for the new version