# How can I suppress the email field in profile?

**URL:** https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551
**Category:** Ask for Help
**Created:** [July 26, 2021, 8:52am UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551 "2021-07-26T08:52:47Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Simon\_Hill](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/simon_hill/32/94730_2.png) [@Simon\_Hill](https://community.glideapps.com/u/Simon_Hill)
#### Post date: [July 26, 2021, 8:52am UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/1 "2021-07-26T08:52:47Z")

</div>

I’m loving the new action to edit a user’s profile. But I notice the email address sits under the profile image and often it’s not the nicest random word choice. Is there a way to hide it or replace it with another dummy option? I don’t really see the value in showing it to users… (this app is a Basic app).

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/3/f/3f964af7e38d6104294d243cc6f78c69061facbe.jpeg)

Or link to app:

> **[Vinionaire](https://elegant-volcano-8535.glideapp.io/)**
>
> Who wants to be a Vinionaire?

Thanks in advance…

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [July 26, 2021, 9:10am UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/2 "2021-07-26T09:10:45Z")

</div>

Please try this CSS.

```auto
<pre><span><style>
div[id*='screenScrollView'] > div > :nth-of-type(1) :nth-child(2) :nth-child(2) {
display: none;
}

```

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/6/968812a9e4b49684e1278a42986783d2a4951af2.png)

---

<div class="post-metadata">

### Author: ![Simon\_Hill](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/simon_hill/32/94730_2.png) [@Simon\_Hill](https://community.glideapps.com/u/Simon_Hill)
#### Post date: [July 26, 2021, 9:29am UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/3 "2021-07-26T09:29:25Z")

</div>

Thank you…

As a CSS virgin, do I insert that into a rich text component somewhere on the page?

---

<div class="post-metadata">

### Author: ![Simon\_Hill](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/simon_hill/32/94730_2.png) [@Simon\_Hill](https://community.glideapps.com/u/Simon_Hill)
#### Post date: [July 26, 2021, 9:31am UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/4 "2021-07-26T09:31:39Z")

</div>

> [@ThinhDinh](#):
>
> ```auto
> <pre><span><style>
> div[id*='screenScrollView'] > div > :nth-of-type(1) :nth-child(2) :nth-child(2) {
> display: none;
> }
> 
> ```

Ah cool… worked like a charm… **Thank you!**

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/9/9939cb32fc04db65b471a7a44fa3af4657aa0f68.jpeg)

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [July 26, 2021, 1:40pm UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/5 "2021-07-26T13:40:50Z")

</div>

User’s will see their own real email address when they are signed into the published version of the app. User’s should never see their anonymous email unless you explicitly add a component to show it.

---

<div class="post-metadata">

### Author: ![NoCodeAndy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nocodeandy/32/62530_2.png) [@NoCodeAndy](https://community.glideapps.com/u/NoCodeAndy)
#### Post date: [January 17, 2024, 4:51pm UTC](https://community.glideapps.com/t/how-can-i-suppress-the-email-field-in-profile/29551/6 "2024-01-17T16:51:26Z")

</div>


