# שדה משתמש מותאם אישית גלוי בדף ההרשמה

**URL:** https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843
**Category:** Support
**Tags:** user-custom-fields
**Created:** [14 בינואר,‏ 2022,‏ 10:42am UTC](https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843 "2022-01-14T10:42:23Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Krischan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krischan/32/47290_2.png) [@Krischan](https://meta.discourse.org/u/Krischan)
#### Post date: [14 בינואר,‏ 2022,‏ 10:42am UTC](https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843/1 "2022-01-14T10:42:23Z")

</div>

Every new user field I create with these properties are now visible and editable on the signup page:

 ![image](https://global.discourse-cdn.com/meta/original/3X/1/7/17340bdec125606be26df613de6aa502e8a585b7.png)

Older fields with the same properties are not. Can you help, please? I need the fields to stay invisble to the user. I’m on the last stable release.

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [14 בינואר,‏ 2022,‏ 10:56am UTC](https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843/2 "2022-01-14T10:56:19Z")

</div>

There are a couple of bits of CSS you can use in this topic:

> [@Custom profile fields, not show them on signup](https://meta.discourse.org/t/custom-profile-fields-not-show-them-on-signup/127152/6):
>
> You can use the (dasherized) field name now… so
> 
> ```plaintext
> .user-field-your-field-name {
> display: none;
> }
> 
> ```
> 
> ~~I’ll double check invites, if it isn’t the same there… it should be!~~ Yep, it’s the same on invites, you can use `.user-field-your-field-name` there too.

> [@Custom profile fields, not show them on signup](https://meta.discourse.org/t/custom-profile-fields-not-show-them-on-signup/127152/8):
>
> My CSS is pretty basic, but I think you can target just the box on the sign-up page with this: (and the invite page with the second one)
> 
> ```plaintext
> .d-modal.create-account .user-field-YOUR-FIELD-NAME {
> display: none;
> }
> 
> .invites-show .user-field-YOUR-FIELD-NAME {
> display: none;
> 
> } 
> 
> ```

  

> **Extra details on how to add it to your site**
>
> - Go to `/admin/customize/themes`
> - Click on **install** and then **create new**
> - Give it a name, and select ‘component’.
> - **Create**
> - Add it to your theme
> - Click on the **Edit CSS/HTML** button and paste the code into the **Common tab**
> 
> And save. 👍

---

<div class="post-metadata">

### Author: ![Krischan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krischan/32/47290_2.png) [@Krischan](https://meta.discourse.org/u/Krischan)
#### Post date: [14 בינואר,‏ 2022,‏ 11:02am UTC](https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843/3 "2022-01-14T11:02:55Z")

</div>

That was it! My bad. Used CSS to make the other fields I have invisible. Thanks!

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [18 בדצמבר,‏ 2022,‏ 8:34pm UTC](https://meta.discourse.org/t/custom-user-field-is-visible-on-signup-page/214843/4 "2022-12-18T20:34:19Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
