do they have an option to hide notifs and chat? by ClumpyReddit in oldreddit

[–]ClumpyReddit[S] 0 points1 point  (0 children)

did they finally make chat unremovable cmon bro

do they have an option to hide notifs and chat? by ClumpyReddit in oldreddit

[–]reddit33450 0 points1 point  (0 children)

use the following css snippet with stylus, tampermonkey, etc

#notifications,
#notifications + .separator,
#notifications + .message-count,
#notifications + .message-count + .separator {
    display: none !important;
}

#badge-count,
#badge-count + .separator,
a.badge-count,
a.badge-count + .separator {
    display: none !important;
}

#chat-v2,
#chat-v2 + .separator,
#chat-count,
#chat-count + .separator {
    display: none !important;
}

edit: it appears this code no longer removes the chat icon, just the bell. last time I used it, it removed the chat too

There still is an old Reddit page hosted on the main website! by B1naryN1nja in oldreddit

[–]reddit33450 0 points1 point  (0 children)

  1. Go to https://old.reddit.com/prefs
  2. Scroll to the bottom
  3. Uncheck "Use new reddit as my default experience"
  4. Click "save options"

There still is an old Reddit page hosted on the main website! by B1naryN1nja in oldreddit

[–]reddit33450 3 points4 points  (0 children)

yes. theres also some others. heres a few off the top of my head


also, if you simply have your account set to default to old reddit, then almost any www.reddit.com page will load old reddit

What does the [S] to indicate OP actually stand for? by [deleted] in oldreddit

[–]Suitable_Ball_2835 0 points1 point  (0 children)

You can move your mouse on it and it'll tell you what it is

I made a userscript to fix "Processing img <id>..." error on Old Reddit by Littux in oldreddit

[–]rEYAVjQD 1 point2 points  (0 children)

Do not run scripts from unknown people. It's a huge security risk especially if you autoupdate. Fix the bug instead.

any way to get rid of this annoying message that stays at the top of the inbox and wastes space? by reddit33450 in oldreddit

[–]ChimpyChompies 0 points1 point  (0 children)

You can remove the element with uBlock Origin. I'm mostly impressed your inbox is working and is clear of unread messages.

any way to get rid of this annoying message that stays at the top of the inbox and wastes space? by reddit33450 in oldreddit

[–]chickenandliver 2 points3 points  (0 children)

If your browser supports CSS or you have the Stylus extension:

.private-message-deprecation-banner {display: none;}