An option for user field to be hidden in sign up

We want some user fields that are specific to our own administration needs. We don’t want the user to see them in sign up. However it seems there is no such option right now.

3 个赞

Can’t you hide them with CSS?

I didn’t try. Does it hide a specific user field or all of them?

如果您想隐藏该页面上的所有自定义字段,可以将以下 CSS 代码添加到您的主题中。

.invites-show {
  .user-fields {
    display: none;
  }
}

如果您想隐藏某个特定字段,可以通过为其添加的特定类名进行 targeting。

基本上,这对应于您在管理后台设置的字段名称(转换为小写),并将空格替换为连字符。

例如,“工作经历”会变成

.user-field-work-experience

您可以将以下代码添加到您的主题中,以隐藏该特定字段。

.invites-show {
  .user-field-work-experience {
    display: none;
  }
}
5 个赞

Closed in favour of Site setting to hide custom user fields from signup page