Post
Topic
Board Meta
Merits 10 from 8 users
Re: Hide my name
by
suchmoon
on 06/04/2019, 14:00:17 UTC
⭐ Merited by o_e_l_e_o (2) ,ABCbits (2) ,DdmrDdmr (1) ,Bitcoin_Arena (1) ,Husna QA (1) ,bitart (1) ,lemipawa (1) ,Welsh (1)
I use this in my post report extension but you can do it as Xal0lex mentioned with some other tools that inject scripts. You can probably just run it in the dev console (Ctrl-Shift-I) manually. Not sure about mobile browsers though.

Code:
try {
    document.getElementById("smfheader").style.visibility = "hidden";
    document.getElementById("hellomember").style.visibility = "hidden";
    document.getElementsByClassName("avatar")[0].style.visibility = "hidden";
} catch { }

Looks like this:

------