cyberbrain (
cyberbrain) wrote2021-03-19 06:54 pm
Entry tags:
there was an ao3 update (sort of)
It hasn't been properly announced yet (can I call it a shadow update?) but I noticed something when I was looking at someone's profile.
There are now user IDs listed on everyone's profiles (they seem to be the account number based on its time of creation). The IDs can be used to hide all of an author's works. It's a simple line of CSS that needs to be added to your skin:
li.user-IDNUMBERHERE {
display: none;}
All this does is hide the blurbs for the works everywhere (including in the author's works list in their profile...but not if you're looking at their dashboard, strangely. that's the only exception). This WON'T prevent the user from interacting with you but it's a way to save yourself from seeing (whatever the author is doing that you dislike).
This definitely would've saved my experience with my old fandom...it just really sucks when your OTP becomes a popular prior relationship for one of the characters and someone likes to continuously tag it in their works.
Welp, I hope this can be useful. Bye for now ^^
ETA:
naye pointed out that the "li" can be skipped and an !important property can be added.
Also, if you want to block more than one person, there's no need to repeat that whole line, you can just add a comma and list the next user like so:
.user-ID1, .user-ID2 {display: none !important;}
ETA2: Further testing showed me that .user-ID {display: none;} doesn't work without the !important property, so do keep that. meanwhile li.user-ID {display: none;} appears to work both with and without !important.
There are now user IDs listed on everyone's profiles (they seem to be the account number based on its time of creation). The IDs can be used to hide all of an author's works. It's a simple line of CSS that needs to be added to your skin:
li.user-IDNUMBERHERE {
display: none;}
All this does is hide the blurbs for the works everywhere (including in the author's works list in their profile...but not if you're looking at their dashboard, strangely. that's the only exception). This WON'T prevent the user from interacting with you but it's a way to save yourself from seeing (whatever the author is doing that you dislike).
Welp, I hope this can be useful. Bye for now ^^
ETA:
Also, if you want to block more than one person, there's no need to repeat that whole line, you can just add a comma and list the next user like so:
.user-ID1, .user-ID2 {display: none !important;}
ETA2: Further testing showed me that .user-ID {display: none;} doesn't work without the !important property, so do keep that. meanwhile li.user-ID {display: none;} appears to work both with and without !important.
no subject
no subject
no subject
no subject
no subject
no subject
I only posted this because I hadn't seen anyone talk about it. Can you direct me to where you first saw it? I'd like to see what people are saying.
no subject
Here's where I saw it: https://twitter.com/sarking/status/1372000625299501058?s=19
no subject
Oh and I just remembered to add this to the post, if you want to block more than one person, there's no need to repeat that whole line over and over, you can just add a comma and list the next user to get:
.user-ID1, .user-ID2 {display: none !important;}
Thank you for that link!
no subject
no subject