#🏥-vencord-support-🏥
1 messages · Page 472 of 1
WHY DOES IT DO THAT
theme
vf themes
open the dev tools with CTRL + Shift + i (Cmd + Option + i on MacOs) and click on the "console" tab at the top. Then paste and run (with enter) the following code.
It will
- disable custom css (you can turn it back on in Vencord Settings)
- copy your current theme links to your clipboard as a backup
- remove all themes
(() => {
Vencord.Settings.useQuickCss = false
try {
const copy = window.copy ?? Vencord.Webpack.Common.Clipboard.copy
copy(Vencord.Settings.themeLinks.join("\n"))
} catch { }
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()
Yes, I'm aware that my clock is wrong. The issue is that "1 hour and 60 minutes" doesn't make any sense. It should be 2 hours. Also, I happen to know that my clock has only drifted by 1 hour, so the number is probably just plane wrong.
Although, again, this doesn't bother me a whole lot, because it's pretty minor.
Sorry, I should have communicated what I was talking about more clearly. My bad.
I happen to know that my clock has only drifted by 1 hour
their clock not yours btw
The issue is that "1 hour and 60 minutes" doesn't make any sense.
yeah its just like that
Hmm, alright. Probably an off-by-one error somewhere in the display code for the plugin.
But it doesn't bother me enough to learn the codebase and make a PR for it.
I started discord in web version now.
In the linux flatpak version I get the following errors. I assume this is a Discord/Linux problem and not Vencord?
WHAT DO I DO NOW
yeah discord borked the deb
turn off caps and actually read what it said
what stuff
open the dev tools with CTRL + Shift + i (Cmd + Option + i on MacOs) and click on the "console" tab at the top. Then paste and run (with enter) the following code.
It will
- disable custom css (you can turn it back on in Vencord Settings)
- copy your current theme links to your clipboard as a backup
- remove all themes
(() => {
Vencord.Settings.useQuickCss = false
try {
const copy = window.copy ?? Vencord.Webpack.Common.Clipboard.copy
copy(Vencord.Settings.themeLinks.join("\n"))
} catch { }
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()
So I just wait using the web version until Discord fix the deb?
or vesktop
where are the settting on the thing
r e a d
- Open the dev tools with
CTRL + Shift + i(Cmd + Option + ion MacOs) - Click on the "console" tab at the top
- Then paste and run (with enter) the following code.
(() => {
Vencord.Settings.useQuickCss = false
try {
const copy = window.copy ?? Vencord.Webpack.Common.Clipboard.copy
copy(Vencord.Settings.themeLinks.join("\n"))
} catch { }
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()
yh im on console now what i do
I told you exactly what to do
yh i dont get where i meant to go now
paste
what do i do now
what code
i give up
Your perseverance is admirable.
is there a plugin to show time in the members list?
time for what?
you have a clock on your system
i have taskbar hidden
Like, timezones? Or do you just want a clock at the top?
so i dont typically see it
I don't think there's a plug-in, but the js for that is probably pretty simple. If you know what you're doing, you could probably hack that together in 15-30 minutes.
i'd do it myself but i havent the slightest clue how vencord js works or have the time
Have you written in plain js before?
Oh, nice, same.

most of my plugins not working correctly
I'd personally just write a script to insert the time where you'd like it to be. The downside is that you'd have to rerun it each time discord restarts.
If you'd like it to be a plug-in, there's probably documentation.
can someone help
discord pushed a patch that broke some plugins
provided you are actually up to date theres nothing you can do but wait at this time (unless you're using canary, in which switch to stable)
Oh? Is there a list posted anywhere?
im using ptb
switch to stable
oki
no
well, kinda in #👾-core-development but its a list of broken patches, not plugins
Okay, thanks.
Ah, ok
vesktop on linux mint isn't picking up my game activity (rhytia)
how did you install vesktop
it picked it up just fine yesterday
the .deb file on the site i think
should work OOTB
ill try restarting the game
ok sorry im dumb
it was an one time issue it seems (?)
I'll restart vencord to see if it's an issue with it not picking up activies that were started before the client
How can i change a group name on PC?
I can only do it on iOS
So i restarted the vesktop client
This is for vencord support, only not discord.
Oh
it does not pick up activities that were started before the client
Though, you do it when you're actually in the group and then by pressing the name at the top
Ohh thx
double click the group name in the chat window
can i not use querySelector for custom js snippet? nothing is happening
function createTimeDiv() {
const targetElement = document.querySelector('.membersWrap_cbd271 .hiddenMembers_cbd271');
// Check if the element exists
if (!targetElement) return;
// Create the div to display time
const timeDiv = document.createElement('div');
timeDiv.id = 'sticky-time-div';
// Append the div if it doesn't already exist
if (!document.querySelector('#sticky-time-div')) {
targetElement.appendChild(timeDiv);
}
// Function to update time
function updateTime() {
const now = new Date();
const timeString = now.toLocaleTimeString();
timeDiv.textContent = `Current Time: ${timeString}`;
}
// Update the time every second
setInterval(updateTime, 1000);
// Initialize with the current time
updateTime();
}
ayyyyyyyyyyyy
Not 100% sure where to put this, but discord recognizes the anti-cheat that launches before the game launches as the game, when I manually add the .exe file it detects the game but its not in the nice RP that you do when it recognizes the anti-cheat one. I get that this is a discord issue, but is there a way to edit app data or create a vencord plugin so that it recognizes the correct .exe file instead of the anti-cheat and gives the proper rich presence?
cant clone emojis with the plugin "emotecloner"
known
use stable & if you're already using stable wait
im using stable
discord updated some stuff and we're fixing it
this was easy
I cant screenshare with nitro quality with fakenitro. Anyone know a fix?
Nice
Can I see the code that you got working for educational purposes?
// Define the CSS for the sticky time div
const style = `
#sticky-time-div {
position: sticky;
bottom: 0;
padding: 2rem;
z-index: 999;
background: #272b35;
font-size: 1.5rem;
color: white;
text-align: center;
display: flex;
justify-content: center;
margin-top: 1em;
padding-inline: 1em;
border-radius: 1em;
}
`;
// Add the custom style to the page
let styleElement = document.querySelector('#sticky-time-div');
if (styleElement) {
styleElement.remove();
}
styleElement = document.createElement('style');
styleElement.textContent = style;
document.head.appendChild(styleElement);
// Select the target element dynamically
const targetElement = document.querySelector('.container_cbd271');
// Only proceed if the target element exists
if (targetElement) {
// Check if the time div already exists, if so, remove it
let timeDiv = document.querySelector('#sticky-time-div');
if (timeDiv) {
timeDiv.remove(); // Remove the existing time div
}
// Create a new time div
timeDiv = document.createElement('div');
timeDiv.id = 'sticky-time-div';
// Insert the new div as the first child
targetElement.appendChild(timeDiv);
// Immediately set the current time
const now = new Date();
let timeString = now.toLocaleTimeString();
timeDiv.textContent = `${timeString}`;
// Update the time every second
setInterval(() => {
const now = new Date();
timeString = now.toLocaleTimeString();
timeDiv.textContent = `${timeString}`;
}, 1000);
}
Did you miss above where I said discord broke some stuff and we're fixing it?
on my friend's client it works so it seemed weird
is message logger working?
If you are trying to install plugins from the third party plugins channel, see the pinned message there.
Do not ask for further help or you will lose access to support. If you cannot figure it out with the pinned message, it's not for you.
Absolutely no support is provided with such installs. If you want to ask for help with bugs / issues, install the regular way.
(Auto-response invoked by @pure dawn)
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @pure dawn)
Vencord: v1.10.3 • 832e874 (Standalone) - 26 Sept 2024
Client: canary ~ Discord Desktop v1.0.460
Platform: Win32
Last Crash Reason: N/A
whats this setting called?
vp platformind
Adds platform indicators (Desktop, Mobile, Web...) to users
kemo, sunnie, Nuckyz, Vee
ty
what does it mean by the category? how do u find it
Open ur discord settings
how do i remove this
Adds tags for webhooks and moderative roles (owner, admin, etc.)
Cynosphere, sunnie, RyanCaoDev, LordElias, AutumnVN
i dont see it
Make sure you have already restarted discord completely
ive closed it and i still dont see it
vs dbg
Please share your Vencord debug info by running the /vencord-debug slash command!
do you see 2 blue buttons on that?
where?
on this message
i dont
Open discords settings and scroll all the way down to the bottom and screenshot the following text block
https://cdn.discordapp.com/attachments/1026515880080842772/1255782998725623839/image.png
send it?
Its installed
oh wait
It’s somewhere in ur settings
Oh, nice! Yeah, that looks about like how I was thinking to do it. It's nice code. Thanks.
tyty
im totally not struggling to make this plugin load
Keep it out of here
Its no longer related to support + no support for custom plugins
No support is provided for installing custom plugins. Do not continue asking or you will permanently lose access to support.
It's surprising that it's so subtle. I like how well they integrated changes in the base client.
me too
anyone got the weird combo working with vesktop?
nvidia, wayland, gnome, flatpak?
?
sorry can i provide more details
something odd is happening with the see Private things plug-in, when I enabled it, it didn't show any private channels
after a windows update my discord is freezing after like 3 seconds of booting, devtools freezes with it, should I revert orrr
enable show all channels
Vencord: v1.10.3 • 832e874 (Standalone) - 26 Sept 2024
Client: stable ~ Discord Desktop v1.0.9166
Platform: Win32
Last Crash Reason: N/A
(NOT an unofficial one)
Vencord: v1.10.3 • 832e874 (Standalone) - 26 Sept 2024
Client: stable ~ Discord Desktop v1.0.9166
Platform: Win32
Last Crash Reason: N/A
alriight
yeah
yes
I know.
Vencord: v1.10.3 • 832e874 (Web) - 26 Sept 2024
Client: stable ~ UserScript (Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0)
Platform: Win32
message logger broken 😭
Damn I had the same issue too.
Yeah, not working for me either.
real..
Rip Themes
Yes
Is there any to grab the data for what discord ids were pinned to this category in PinDMs?
No
dang
idk if this goes here but are there any like language translations plugins?
vp translate
Update
its extension, should i re-add
theres a update now?
it
extension you are gonna have to wait
Chrome extension you’ll need to wait
okay
update hasn't even been submitted to it
damn
Exactly what it says
is the failed to clone emoji thing fixed
Try it and find out
i dont wanna download them and then put them in my server again CatBounce
it work
yipie
now its not working🔥
does vencord disable the game overlay feature, because it doesnt work anymore
Nope
Are you on vesktop?
it doesnt work for me
u mean desktop?
Nope
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @haughty goblet)
im on mobile rn
g
wait
Vencord: v1.10.3 • b5f626d1 - 5 Oct 2024
Client: stable ~ Discord Desktop v1.0.9166
Platform: Win32
Last Crash Reason: N/A
⚠️ Vencord DevBuild
⚠️ Has UserPlugins
its not working
It seems like you are building Vencord from source.
We do not provide support for such installs! If you want our help, switch to official Vencord builds: https://vencord.dev/download
Don’t ask for support or you’ll be locked out
To better help you, we need your error logs!
To collect them, please
- open DevTools with
ctrl + shift + i/cmd + option + i - on the top right, click where it says "Default levels" and uncheck everything but "Errors"
- screenshot all errors and post them
screenshot
(Auto-response invoked by @haughty goblet)
donated. keep up the good work
Now wait for someone who can read this
Access to fetch at 'https://cdn.discordapp.com/emojis/1076219612745707620.png?size=4096&lossless=true' from origin 'https://discord.com' has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header contains multiple values ',', but only one is allowed. Have the server send the header with a valid value, or, if an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
it also says this
Need to wait for someone who can read it cause I cant
k thanks
not sure why it doesn't work for you, it's working fine for me
are you using the userscript
whats the user script im using the extension thing
huh ok
do /vencord-plugins
Enabled Plugins (121):
AccountPanelServerProfile, AlwaysAnimate, AlwaysExpandRoles, BANger, BetterFolders, BetterGifAltText, BetterGifPicker, BetterNotesBox, BetterRoleContext, BetterRoleDot, BetterSettings, BiggerStreamPreview, ClearURLs, CopyEmojiMarkdown, CopyUserURLs, CrashHandler, CustomRPC, CustomIdle, Dearrow, Decor, DisableCallIdle, DontRoundMyTimestamps, EmoteCloner, Experiments, FakeNitro, FakeProfileThemes, FavoriteEmojiFirst, FavoriteGifSearch, ForceOwnerCrown, FriendInvites, FriendsSince, GifPaste, HideAttachments, iLoveSpam, IgnoreActivities, ImageZoom, ImplicitRelationships, KeepCurrentChannel, LoadingQuotes, MemberCount, MentionAvatars, MessageClickActions, MessageLatency, MessageLinkEmbeds, MessageLogger, MessageTags, MoreCommands, MoreKaomoji, MoreUserTags, MutualGroupDMs, NewGuildSettings, NoDevtoolsWarning, NoMaskedUrlPaste, NoMosaic, NoOnboardingDelay, NoPendingCount, NoReplyMention, NoScreensharePreview, NoTypingAnimation, NoUnblockToJump, NormalizeMessageLinks, NotificationVolume, NSFWGateBypass, OnePingPerDM, oneko, OpenInApp, OverrideForumDefaults, PauseInvitesForever, PermissionFreeWill, PermissionsViewer, petpet, PictureInPicture, PinDMs, PlatformIndicators, PreviewMessage, PronounDB, QuickMention, QuickReply, ReactErrorDecoder, ReadAllNotificationsButton, RelationshipNotifier, ReplaceGoogleSearch, ReplyTimestamp, RevealAllSpoilers, ReverseImageSearch, ReviewDB, RoleColorEverywhere, SecretRingToneEnabler, Summaries, SendTimestamps, ServerInfo, ServerListIndicators, ShowAllMessageButtons, ShowHiddenChannels, ShowHiddenThings, ShowMeYourName, ShowTimeoutDuration, SilentMessageToggle, SortFriendRequests, StartupTimings, StickerPaste, StreamerModeOnStream, SuperReactionTweaks, TextReplace, Translate, TypingIndicator, TypingTweaks, Unindent, UnlockedAvatarZoom, UserVoiceShow, USRBG, ValidReply, ValidUser, ViewIcons, VoiceDownload, VoiceMessages, VolumeBooster, WebContextMenus, WebKeybinds, WebScreenShareFixes, WhoReacted
holy shit
Surely you don’t need all those plugins
do you have any other extensions? looks like there's a misconfigured CORS header, but not sure why that would happen
Version 129.0.6668.90 (Official Build) (64-bit)
@lapis bay
yeah i really don't see why this is happening
is this happening for all emotes
or just some
my vencord stopped working
The easiest & fastest solution to most issues is to just reinstalll / repair Vencord using the installer. Don't worry, you won't lose your settings! They'll all be there like nothing happened once you're back
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @honest scroll)
Vencord: v1.10.3 • 832e874 (Web) - 26 Sept 2024
Client: stable ~ Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36)
Platform: Win32
There's something going on
does it work if you disable all plugins?
is there an option that enables unlimited upload size?
Impossible
no
Why is my name fucking herbert again
it been herbert
whys it herbert
why am i here
because I said so
i dont have any support-
you had a support question tho
hmm i wonder why
is betterfolders fixed
yep
already a month
I forgot about it
is there a way to make it look like your always listening to spotify
like rvc but with spotify or something
some of my plugins broke
update
like my message logger, view avatars inside reactions
im using the userscript
could you not make a customrpc and make it look like spotify?
it worked
anyone having this issue on windows where they screenshare on vesktop and the ppl watching the stream hear their own voices too?
yeah but I wanted to be like the real thing
that's because they're coming out of the system audio, and you're also streaming your system audio, I'm not too sure if there's a vix through vencord
the easiest thing to do would be to just have spotify running but muted in the background, no?
I dont want to 😦
I'm not sure what you want then? you want spotify to be playing on your profile, but you don't want a fake one, and you also don't want to have a real one?
no I dont want spotifiy open
you need to have spotify open for the presence
we need a ChatGPT plugin for VC 😂
what would it even do
like generate response
There’s this really cool neural network called a “brain”, it works very well
pretty sure what you're asking for is impossible then. I don't think there's a way to have a rich presence that's not custom if you're not even running the thing that makes the presence
This issue has already been fixed. Please update to the latest version either using the inbuilt updater tab or by using the installer
(Auto-response invoked by @jaunty dawn)
can't yall read #1292169393395994755 message
A
it cant be that cuz it happens on the desktop client also
it didnt
A
PLUGINS BROk
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @haughty goblet)
Enabled Plugins (7):
BlurNSFW, CrashHandler, FakeNitro, MessageLogger, WebContextMenus, WebKeybinds, WebScreenShareFixes
Other one
ok it just overwrite my message to send this
Vencord: v1.10.3 • 832e874 (Web) - 26 Sept 2024
Client: stable ~ Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6533.120 Safari/537.36)
Platform: Win32
Chrome extension?
Common chrome extension L, need to wait extra longer for the update
ok i'll waita
there should be smth in the chrome extension like this one with the 'outdated client' warning but saying updates will be later because chrome
im using chromium (opera)
Hi there, I have read and searched here but still have a question. When I use /petpet, I always recieve an object error, even when I specify the user.
userscript can't use it
I'm using Microsoft Edgy, maybe we should wait until the updates
It takes time to submit the extension and for google to review the update before people get it
So petpet cannot be used if even with vencord installed and the plugin enabled?
Are you using the userscript?
For userscript, yes
Im sorry, I am not very good with english. I am not familiar "userscript", specifically.
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @haughty goblet)
Update
Enabled Plugins (7):
BlurNSFW, CrashHandler, FakeNitro, MessageLogger, WebContextMenus, WebKeybinds, WebScreenShareFixes
ğfsdgdh
Other button.
ik how to use
Is "userscript" the web browser install?
One of the 2, yes
Why are you in this channel then
idk
I see. Can you please explaini what it means userscript?
I figured out problem, petpet will not work on broswer.
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @haughty goblet)
Should we reinstall after chrome's update?
i keep getting this error when i clone emojis what does it mean?
If you are trying to install plugins from the third party plugins channel, see the pinned message there.
Do not ask for further help or you will lose access to support. If you cannot figure it out with the pinned message, it's not for you.
Absolutely no support is provided with such installs. If you want to ask for help with bugs / issues, install the regular way.
(Auto-response invoked by @pure dawn)
Update. #1257025907625951423
if you are using the chrome extension you must wait
Don’t ask for support for that here that’s not allowed
Feel free to timeout people who can’t read
Usually it just updates
i feel bad for the support helpers
every time we vns someone in general we give them one more baby to take care of
oh ok thank u ❤️
I mean tbf we don't mention in #1257025907625951423 that the chrome extension takes a while but even still its bad Clueless
I prefer the ones who cant read cause it gives me a sense of satisfaction when I time them out 
Well thank you for the help
Btw I did search the entire server and did not find instances explaining my question. Thx again
Literally asked you twice to run the debug command
Vs dbg
Please share your Vencord debug info by running the /vencord-debug slash command!
this will be the 3rd time ^
If you want help, help us help you instead of you ignoring us
Enabled Plugins (2):
CallTimer, FakeNitro
hey i was just wondering how i woudl download plugins / use the vencord on web browser
i have vencord for my desktop client, do i need to redownload it or something for it to work on a browser?
If you want to use vencord on the browser you must install it to the browser, follow the instructions on the page if you want to do that
ive installed it via the extension on the chrome store already i just dont know how to get it to work in terms of plugins
Refresh
Crazy how you go "how would i download plugins / use the vencord on the web browser" instead of saying "I installed the extension, but vencord doesn't show up"
Its annoying af for us as you're hiding what actually is your problem
its okay for it to not work you don't have to hide that
?
are u dense
i said specifically for the web browser, theres no guide for it so i was wondering why it wouldnt show up
tyvm
Theres no guide for it? Theres a linked web extension with a massive blue add to chrome button why do you need a guide for that?
Even then you had installed the extension so that had nothing to do with installing the extension. Don't get rude with us because you masked your question intentionally/unintentionally
This isn’t necessary
It never says to refresh, that is all
It is solved
Move on
Update
they really do not wanna actually read #1257025907625951423
I'm sorry, that appeared to be an automated response from a bot.
It was very intentional
even if it was automated if its asking you to run something don't you think you should? 😭
Thank you for being so polite and understanding.
I think bro is using automated messages
I searched in known issues, but after it was explained that the script was the issue, I solved the problem for myself. 🙂
Chrome extension was known issue, but I assumed that using Firefox was different. Thank you again for explaining 🙂 and thank you again for what you do with this project
A
🙂
hello i cant see some hidden channels because it doesnt follow the catogory automatically
Its impossible
unless you have the manage server permission you cannot see them, its entirely gated by the api
.
it has been literally at most a minute
You're no more important than anybody else
ik but do yk any quick solition?
ok tysm
Hi, it seems that my message logger doesn't work for some reason
did you read #1257025907625951423?
Same issue here.
(I'm running Vesktop on Bazzite)
Update
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @haughty goblet)
Vencord: v1.10.4 • 013c8d0 (Vesktop v1.5.3) - 5 Oct 2024
Client: stable ~ Vesktop v1.5.3
Platform: Linux x86_64
WAIT A MINUTE
IT JUST STARTED WORKING
How do you have vencord installed?
as a chrome extension
Then you have to wait until google approves the update
Can't I get a crx file and side load it manually
This issue has already been fixed. Please update to the latest version either using the inbuilt updater tab or by using the installer
(Auto-response invoked by @jaunty dawn)
since it's possible to install chrome extensions using that way
https://github.com/Vendicated/Vencord/releases/tag/devbuild or build it yourself, not sure using the "release" devbuild is "supported"
what was the name of the plugin that makes @mentions the color of their top-most role? i remember seeing it somewhere i just forgot its name
vp rolecoloreverywhere
Adds the top role color anywhere possible
King Fish, lewisakura, AutumnVN, Kyuuhachi
ty
was there a way to save custom nitro profiles easily or did I dream it
when i got to install it it says pathced on the file already but when i open discord it doesnt work like there is no setting
fully restart discord
doesnt work
how do you close discord?
scroll down to the bottom of your discord settings and screenshot the text block at the very bottom
task manager
hmm
Open discords settings and scroll all the way down to the bottom and screenshot the following text block https://cdn.discordapp.com/attachments/1026515880080842772/1255782998725623839/image.png
^^^
ok
whats your issue
My fake nitro theme even when enabled is not working
This issue has already been fixed. Please update to the latest version either using the inbuilt updater tab or by using the installer
(Auto-response invoked by @jaunty dawn)
tutorial on how to update if you got told to do so because you don't know how to read
can you add me on discord?
This is a support channel, if you need help ask here
I donated it, I need to send the badge I want, in this case it would be with the spook, right?
guys is it just me or does "disablecallidle" not work?
Like it's still kicking me out
discord just won't open even if I uninstall or repair or whatever
And I'm getting this error
I don't think this is on known issues
This is the second time this has happened and I don't remember how I fixed it then
which country are you from or are you using a vpn
or anything that changes your ip location?
github might be blocked in your country
either use a vpn or change your dns
I'm from Iceland
I had a US vpn on
I turned it off but it's still not working I don't think
Github is not blocked here
Like I can open the site on google
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @pure dawn)
what about https://api.github.com/
I just get this
Am I supposed to get this?
yes
Ok
that message on the installer regardless is a connection problem
my themes keep disappearing every time i restart the client
I've never seen this
is there a way we could be notified when someone deletes their messages with messagelogger? ofc the plugin itself is perfect but i was just wondering if this is a thing that exists or could possibly be added? in the bottom right it'll say "X has deleted X messages" and you can click the popup and it'll take you to the pms?
its what appears when applications aren't signed or are otherwise untrusted
not sure if it even belongs here or not tbh but doesnt kill anyone to ask
at the bottom you can run it anyway
Vencord: v1.10.4 • 013c8d0 (Standalone) - 5 Oct 2024
Client: stable ~ Discord Desktop v1.0.9166
Platform: Win32
Last Crash Reason: N/A
Still doesent work
MessageLogger is the way it is intentionally because we don't necessarily support stuff that could be considered too creepy, and to facilate 100% accurate messages it would require caching a lot of which isn't normally cached (on channels you haven't loaded)
Should I reinstall regular discord
were you the one who asked for the debug abt the disablecallidle
Do you know what the problem could be?
i don't have time to try and repoduce it
.containerDefault_f6f816:has([class*="voiceUser_"]) .iconContainer_d8bfb3 svg.icon_d8bfb3 path[d^="M15.16"] {
d: path("M15.1 20.75c-.58.14-1.1-.33-1.1-.92v-.03c0-.5.37-.92.85-1.05a7 7 0 0 0 0-13.5A1.11 1.11 0 0 1 14 4.2v-.03c0-.6.52-1.06 1.1-.92a9 9 0 0 1 0 17.5Z");
animation-name: volume-icon-anim;
animation-duration: 1.25s;
animation-iteration-count: infinite;
}
/* Change the second path definition of the volume icon SVG to be the static part of my new animated SVG */
.containerDefault_f6f816:has([class*="voiceUser_"]) .iconContainer_d8bfb3 svg.icon_d8bfb3 path[d^="M12"] {
d: path("M12 3a1 1 0 0 0-1-1h-.06a1 1 0 0 0-.74.32L5.92 7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h2.92l4.28 4.68a1 1 0 0 0 .74.32H11a1 1 0 0 0 1-1V3ZM15.16 16.51c-.57.28-1.16-.2-1.16-.83v-.14c0-.43.28-.8.63-1.02a3 3 0 0 0 0-5.04c-.35-.23-.63-.6-.63-1.02v-.14c0-.63.59-1.1 1.16-.83a5 5 0 0 1 0 9.02Z");
}
/* change color of animation to match Discord's "Live" icon when someone is live-streaming */
.containerDefault_f6f816:has([class*="live_"], [class*="baseShapeRound_"]) .iconContainer_d8bfb3 svg.icon_d8bfb3 path[d^="M15.16"] {
animation-name: volume-icon-anim-live;
}
.containerDefault_f6f816:has([class*="live_"], [class*="baseShapeRound_"]) .iconContainer_d8bfb3 svg.icon_d8bfb3 path[d^="M12"] {
color: var(--red-400);
}
/* Animation when there is someone in a voice channel */
@keyframes volume-icon-anim {
0%, 100% {color: transparent;}
50% {color: var(--currentColor);}
}
/* Animation when there is someone live-streaming in a voice channel */
@keyframes volume-icon-anim-live {
0%, 100% {color: transparent;}
50% {color: var(--red-400);}
}```
what does this have to do with support?
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @pure dawn)
so what do I do about it?
Vencord: v1.10.3 • 832e874 (Web) - 26 Sept 2024
Client: stable ~ Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36)
Platform: Win32
css themes or nitro themes?
?
wait until somebody can confirm it happens for them too
css
could you show your setup in the settings for them?
What's new and also how can i get clyde ai on my server/
you can't, clyde doesn't respond and discord patched the bug that allowed them to join
this is every time it restarts right?
maybe the folder permissions are messed up?
ahh okay
wdym?
HOW DO I FIX THIS
What's new in latest update/
have you tried following the instructions
the most recent? bug fixes after discord update
YES
- Make sure discord is fully closed in task manager (or tray)
- Press "take me there"
- If the folder is named after your username, delete it
- Reinstall Discord
- Try installing vencord again
Here is a video tutorial in case you cant read 4 steps:
https://cdn.discordapp.com/attachments/796383204667686913/1273973233619832843/Please_Have_The_Ability_To_Read.mp4
running vesktop on mac, everytime i go afk and put my computer to sleep--this happens when i open vesktop and it never resolves
did they path vencord fake nitro?
have you read #1257025907625951423
any1 have a script for removing the forward button its literally so useless i hate it
css
yh
happens to me too. just reload with Command+R
ahhh ok, thanks
aaaaaaaand they're gone again
clyde has been dead for almost a year now
try this
[aria-label="Forward"] {
display: none;
}
it worked ty
np
Basicly when i installend vencord i didnt get it on dicord
did you fully restart discord?
yes
go into your discord settings and scroll all the way down, screenshot the block of text at the bottom
right at the bottom of your settings, just below where your screenshot ends
could you screenshot what the installer says?
my fake nitro suddenly stopped working, i checked my settings and it is still turned on but i can't change my discord theme or my in app icon. I'm on desktop web.
chrome extension users must wait until google approves the update
There's an update??
i'm guessing you didn't read #1257025907625951423 did you
no, not you
okay
Then you would know theres an update because known issues tells you to update
neither of which give me any help
No it doesn't
Press windows + r then paste one of the following
If you are on Stable (most likely):
%localappdata%/Discord
If you are on PTB:
%localappdata%/DiscordPTB
If you are on Canary:
%localappdata%/DiscordCanary
Then screenshot the contents of the folder you were taken to
omg shut up bot
its a sticky message
I didn't use any filters
no shit
then why do you feel the need to mention it if you know what it is?
either way, if you are on the extension you have to wait
and what should i do?
Are you going to actually help me or not? All the other things are working
oh it was to me sorry
userscript or chrome extension?
Chrome extension but I'm using it on Opera GX
Then like the 2 other times I have answered you already you have to wait
Google is the one in control of approving the update, this no longer has anything to do with us
What update????
go into task manager, completely close discord and start it again
I'm so confused
The vencord chrome extension
It would be helpful if it popped up and told you that it was going to updaye
If it's due to an update, why is everything else working?
Now i'm confused
It's the ONE plugin
and its ONE discord update that caused it
It did not work
why should everything else break?
EVERY PLATFORM IS WORKING
SOME THINGS BROKE
WE FIXED IT
THE FIX IS PENDING APPROVAL
EVERY OTHER PLUGIN IS WORKING PERFECTLY FINE
DISCORD ONLY BROKE SELECT PLUGINS
ah i see
because the update broke only a few plugins
vencord isnt a jenga, its just normal brick wall, if you take out 1 brick not much will break
its not like discord completely explodes vencord every time it updates
if vencord broke at every little update it would become a full time job
is there a way to download two vesktops and have different profiles on both of them at the same time?
did not work
to be able to use both my profiles
Then I don't know, you could try this and then reinstalling vencord again.
Do a clean reinstall using the guide below (its completely different to a normal reinstall)
https://support.discord.com/hc/en-us/articles/115004307527--Windows-Corrupt-Installation
tldr:
press
windows+r
paste%AppData%
deleteDiscordrepeat for
%LocalAppData%
Install discord
about my issue, i keep having to reinstall my themes every time i restart discord
why would you reinstall discord???
they said restart not reinstall
- i use web version
waht is that
theme sync between platforms
its in the settings
do you use link themes?
i only use it for emojireplace
but it keeps that
i dont thunk vencord saves file themes on web, try using raw/github themes instead
it started happening today
vban 997110217638694942 moron, giving death threats in dms
Done! 
Banned beanicator_ (@weak bone)
@pure dawn 
holy fucking shit death threats? 💀
before it would save my themes
i just told him to take it up with you when it comes to your timeout and he told me to go kill myself
i just timed them out because i was getting sick of them being an idiot and not listening even after i tell them what the solution is 3 times
not dealing with it
does console say anything?
?
so my guess that its related to web itself, using dekstop app will be 100% fix to it
anyone else having issues launching discord with OpenAsar on Linux?
discord now only launches through a terminal when OpenAsar is installed. i have narrowed it down to an issue with OpenAsar
i used the CLI installer
I broke my discord it does not work XD
Issue is not related to vencord, and yes discord broke the packaging this update. Either launch it through the terminal or use Vesktop for now
Yeah its supposed to break your discord, hence it telling you to reinstall after
its still slow as fuck when launched through terminal so might have to switch to vesktop for the time being
gotcha. i prefer vanilla client and it's not an issue since i've got a ton of RAM now so i can use standard asar
Im doing it
Help, I used the profiletheme thing and now it won't come off, as in like the vencord menu thing
wdym?
did you try reinstalling?
Bot I beg hush
Not yet but my storage is doodoo
just open installer and press "reinstall" button, it fixes 99.9% of issues
Actually how big is it again? Hold on
fale nitro equipped and uh...
How the hek do I open installer
what? it will just delete vencord and install it again, it wont increase in size at all
use program you used to install vencord
Update, if you are on the chrome extension you must wait until google approves the update, there is nothing we can do as we already submitted it.
ohhh ok
ty
vf is the embeds vs is the text stuff (yes its very confusing)
trips me up trying to remember which is which
my message logger aint working again...
.
oh
nvm i get it
i wish web users got a warning each time upon entering this channel that they might need to wait for update
The most likely cause is that your install is outdated. Check if there's any updates. You can either do so using our inbuilt updater, or if you cannot get there due to crashes or similar, use the "Update Vencord" in the Installer.
If you're all up to date, try reinstalling with the installer anyway!
And if it now still doesn't work, please let us know in our support server
okay so tell me how I deleted vesktop but it still runs without being downloaded?
Now it's telling me I have invalid discord install
yeah but it still follows the theme
Hell does that mean
applications can do that
as you have RAM
show whatever is telling you that
yes
restart the installer
Update, if you are on the chrome extension you must wait until google approves the update, there is nothing we can do as we already submitted it.
I even reinstalled the installer
well what do you see now
do you know how long it will take them?
from a day to a week
I installed the other one and it said install successful but I don't see vencord or anything
oh i see alr
im using microsoft edge also already updated
vs dbg
Please share your Vencord debug info by running the /vencord-debug slash command!
Where's the actual like own venkord app
Cause I have some of it's settings in normal discord but I loved the vencord app discord thingy
i'm guessing %localappdata%\vesktop
vencord settings for desktop discord are in %localappdata%\vencord
Yeah but like I mean I have normal discord, but I don't want that one, I want the vencord app
Where's it's literally discord but just 10x better
I'm confused what the end goal is here, why do you need to know where it is on your computer
I don't know how to explain it
You know like, vencords discord app? Where it says "vencord" on the top instead of "Discord" and has a vencord logo and vencord loading
YE THAT
that's the one
I'm sorry English is my second 😭
its fine lol
Life saver 😝
NOOO
Ohhh okay
You know the white bits that I had? I could of just clicked "dark" theme and it's gone.. omfg
oh you were complaining about the theme?
it was unclear what you were complaining about
Thank y'all for helping though! And also it wasn't the theme, it was the I think it's called "fakeprofilethemes"
I thought it would be good and I tested it but I had a Downloaded theme and it made everything look NASTY
So I tried turning it off and even reset my pc, and it didn't work but this whole time all I had to do was press "dark"
So has Vesktop not included a zoom feature in appearance? I swear it did
Update, if you are on the chrome extension you must wait until google approves the update, there is nothing we can do as we already submitted it.
wdym by zoom feature in appearance
oh right
discord doesn't show it on discord web (because its a web build) so they make you use the browser zoom instead
ctrl & + or - will still work though
chat i want my fake nitro back 😭
hi, how do i fix always animate not working here?
the profile effect is not being animated and neither is the
emoji
do you have reduced motion enabled?
no
Vencord: v1.10.3 • 832e874 (Standalone) - 26 Sept 2024
Client: stable ~ Discord Desktop v1.0.9166
Platform: Win32
Last Crash Reason: N/A
hey are there any known issues with constantly being signed out of vesktop?
every time i close it completely im signed out
vp nodevtool
Disables the 'HOLD UP' banner in the console. As a side effect, also prevents Discord from hiding your token, which prevents random logouts.
Vee
what is fixspotifyembed and how do i use it
hihi, having issues with the experiments plugin, i still lack acess to said pannel, and several of the buckets i assigned myself to have reverted
vp fixspotifyembeds
Fixes spotify embeds being incredibly loud by letting you customise the volume
Vee
desktop only
read the description
i did but im trynn use it to turn up my volume more but js dont know how 2 work it
go into the plugins settings
day 20000 no fakenitro
nevermind, i am stupid, does anyone have a css hack to remove this thing from the bottom of my screen constantly?
is fake nitro appearences not working for yall too or do i need to update?
the thing is not working at all
i click install
i open discord
its just plain old discord
andive used it on a win11 system before
it worked wonderfully
im on win10 now
tried known issues fixes
it simply aint work
Scroll down to the bottom of your discord settings and screenshot the block of text right at the bottom, after all the clickable stuff
i did and turned it up to 50 and restarted my discord it did nothing to my volume
it only does it to the embeds in chat, not actually how loud spotify itself is
WHY IS MY THEME DONT WORK
no free nitro stikers :(
so what does that mean sorry for making it difficult just trynn understand
Update, if you are on the chrome extension you must wait until google approves the update, there is nothing we can do as we already submitted it.
unplugging my usb and installing fixed it?????
what
bro update what
vencord
my vencord is fine working
but theme doesnt
Your Discord seems to have installed in the wrong place. This could be due to a variety of issues.
To fix it, click the "Take me there!" button and follow the instructions in the dialog.
evidently not as you can no longer use something that did work
i need help
The solution is to update
yay fakenitro cameback
my appearance page not working
UPDATE vencord
What do you think the plugin does
shi turn up spotify embed but wtf does that even mean lmao
when you post a spotify link it shows a little thing that you can play the song through
fixed ty
No
is there no permanent solution? i have to refresh more than once to get lucky for it to work
i checked in the github issues; don't see anyone mentioning it maybe i'm not searching for it correctly
does it log you out?
nope, its an endless loading screen
odd, it doesnt happen to me and im on macOS
can't access any of the ui while on it either
haven't yet; will give it a go
what macOS
backup to the cloud or via file before reinstalling btw so you dont lose ur stuff
i'm on Sonoma 14.4.1
alr heres the link to appcleaner https://freemacsoft.net/downloads/AppCleaner_3.6.8.zip
its a direct download so discord might say blah blah blah its malware
i already have appcleaner installed
but if you dont trust me just go to https://freemacsoft.net/appcleaner/ and click this option, itll take u to the exact same link
oh
so yeah just quit vesktop, drag vesktop.app from finder to appcleaner (make sure appcleaner has full disk access) and then empty trash and redownload
got it, brb
how can i fix this?
you dont, fake nitro uses links to fake emojis
demn
this time when i installed i unclicked the RPC option; i also didn't add my discord alt accounts (which after testing works)
now i'm going to add all my other accounts and see if i run into the infinite loading bug
you can enable Transform Compound Sentence in the settings of fakenitro but keep in mind that they will still appear like this to regular users
kk
vencord broken again?
looks like its fixed, now between account switches i see a glimpse of the loading screen but i'm not stuck on one
thanks for helping
This isnt as much of an actual support question as it is a more genereal question but i wasnt sure where to ask this. Is this tab safe to use? Like everything in it? I did alot of research but all of the videos etc were just covering the "experiments" tab
if you don't know what something does, don't touch it
if you're bored find something else to mess with
Well you see thats why i am asking
I wont ever know what anything does without learning what it does
if it wasn't safe, it wouldn't be available to you
but its stuff you'll basically never need
Is there a list anywhere what the stuff does?
Read #1257025907625951423 before asking for help!
Read #1257025907625951423 before asking for help!
Read #1257025907625951423 before asking for help!
I ALREADY HAD THIS ON
1- stop using caps and being annoying
2- READ #1257025907625951423
they were also talking about fakenitro not working like, an hour ago, so i dont think they will
unclickable users are so cringe
hi
Read #1257025907625951423 before asking for help!
hi is there a plugin where i can have fav media thats not a gif? or is there a trick?
...So, I remember having this thing enabled for a while, until today it suddenly stopped working, I tried everything to make it work again and it just did not want to, I wanna know if there's a way to solve this...thing
Please share your Vencord debug info by running the /vencord-debug slash command!
(Auto-response invoked by @pure dawn)
Vencord: v1.10.3 • 832e874 (Web) - 26 Sept 2024
Client: stable ~ Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0)
Platform: Win32
chrome extension users must wait until google approves the extension update
anyone know what plugin is this "the reaction one" i want to remove it but i have no idea what did i enable 😭 (it's not really an issue but ig i'm not allowed to ask for help in general)
its not a plugin
new discord feature
bruh, i can't click on answers due to it on vc chat, is there a way to remove it ?
anyway thnx for help but now since i asked i lost the general (offtopic) chats lol
put this in your quick css
div[aria-label="Forward"] {
display: none;
}
wrong snippet
copied the wrong one
its 03:30 :3
huh? i'm lost
@brisk surge hey sry for pinging you here, but since i got that "needy for support" role i lost the offtopic channels and can't see them (neither in channel & roles)
is needy for support
continues to be needy by pinging users
do you have a spec of patience?
I can't be bothered to find the css for it right now but you can disable the reaction frecency experiment with the expermients plugin
enable the plugin, restart discord, scroll down to the bottom of settings, click experiments, search reaction, find the "reaction frecency algorithms", click the drop down and set yourself to not eligible
Hey @little ermine, take a look at this!
Do not ping for support.
Do not DM for support.
Do not use channels other than support for support.
Use #🏥-vencord-support-🏥.
thankies, found it
what the chees
will my uhhh vencord settings also move to my desktop version if i install the normal discord
if you have cloud save on, yes
emojis are super huge for me is anyone else haging this issue?
like i made sure my addons wernt the cause and they arnt
could you send a screenshot
oh weird, is there maybe something in your css?
maybe ill have to look i was just wondeering cause this only happend right when i updated vencord just now and discord (i use discord ptb if that makes any difference idk)

like im pretty sure this is a emoji not s sticker but it shows as a huge emoji fsr 
hmmm ptb might, but I'm just guessing here
alright ill see thank you
yeah this just started happening to me like few mins ago
true
ohh ok im not the only one then
my fake nitro wont work, like it wont let me send gifs
why is my quick css not working?
aria-label changes depend on language
ik this aint support or anything but whats openasar
even when i change my client language to English (US) it still doesn't work
also the shop is hidden based on href but it's also not hidden
do u have enable custom css in vencord settings on
Starts faster, performs better, even smaller
o
my bad, it was off for some reason
how do i get the aria label for GIF/sticker pickers in other languages?
use inspect element in devtools
(ctrl shift i then ctrl shift c then click gift button)
i made a fix for the emojis being messed up
.emoji {
-o-object-fit: contain;
object-fit: contain;
width: var(--custom-emoji-size-emoji);
height: var(--custom-emoji-size-emoji);
vertical-align: bottom;
}
.emoji.jumboable {
width: var(--custom-emoji-size-jumbo-emoji);
height: var(--custom-emoji-size-jumbo-emoji);
min-height: var(--custom-emoji-size-jumbo-emoji);
}
cant upload to css snippets for some reason
im using browser extension and randomly everything stops working, im using more tags and message logger and they randomly break and not work even though its saying it does and this been happening for a long time now
there was a bunch of plugins that broke, they've since been updated. because you're using the browser extension you'll need to wait a bit longer for the update
alr
does anyone know why vencord would uninstall its self
it happens sometimes when discord updates. repair using the installer
messagelogger wont work after switching to opera gx, used to work on edge. any reason?
nevermind #1257025907625951423
when the extension does update for chrome, would it be possible to have a download of it in zip form? so that we can get the unsigned extension on firefox based browsers, since the user script is extremely limited.
aiii can any one help me see why tf is the pin dms plugin hiding dms? like i have some friends pinned in a certain catagory and if i dont talk to them actively they are just hidden, and its making it really hard to well manage my friends since i am forgetful and cant remember their discord usernames
i have a shitton of friends and connections on different communities and stuff
like i have a bunch of friends in the pin catagory "gd friends" yet when i dont talk to one of them actively it just gets hidden
and there's this friend that i forgot their discord username and i just cant find them
its so annoying
uh my message logger isnt working. i use chrome
lil vro doesnt wanna read
whoopsies
do you guys have any idea why that is happening???
why is my pc unbelieveably laggy after installing vencord
how do i change themes
i kinda fixed it but its still laggy
because your pc sucks, or you have hardware acceleration on (or off depending on your components)
oh
my pc is shit but it ran perfectly like a few months ago
read know issues before asking for help'
What do you mean
There's this button
this
That hides member tab
No my discord keep getting rid of server tab I want it
You can't get it like this
I dont want the user profile
Neither with a plugin
Don't be mean to venbotto :(
Doesn't work like that...
shut it
People not being able to read is more annoying, it’s necessary, cope
so true
so there no CSS to disable user profile
dawg what am i doing wrong
Sticky icky bot fr
Outdated theme probably
what is it
Yeah outdated


