Does anybody know how to hide the email section?

It’s kinda bugging me out because whenever I screenshot the user interface in the image below, the email is inside there and I don’t want it to get exposed.

Can anyone help me hide it or remove it or turn it off?

only admins can see the email and moderators if you have this setting checked:

try looking at a profile logged in as a regular user

How do I hide it from my own view just to clarify? The reason why I’m asking this thing is that whenever I screenshot the UI in the image above the email commonly gets leaked and I don’t want that to happen.

it shouldn’t even show unless you click the show button

Well, I don’t have a show button

update your Discourse? :woman_shrugging:t2:

Well, I’m sorry for making you frustrated, but I don’t think I can do that as a user that’s just simply asking

where did i say i was frustrated?

Oh sorry I thought I was making you frustrated​:sweat_smile: but it’s all good. I’ll just wait until the show feature gets implemented on this discourse.

ok. please don’t make assumptions about other people’s feelings. i tried to help you when i could have easily just ignored your topic altogether.

Sorry. It’s all good.

Did you solve the issue?

if you have access to creating components, you can use this CSS to hide it if you think it’s really necessary. although if you are just a moderator and can see emails, but don’t have admin access to update your Discourse, you won’t be able to do it. depending on your browser version, you can use a script tool extension like stylus to make css customizations to your pages.

dt.email {
    display: none!important;
}
dd.email {
    display: none!important;
}