Custom profile fields, not show them on signup

When defining custom profile fields there is an option to have them not mandatory at signup.

image

Yet, they still show up in the signup screen. This is not desirable since

  • I want the signup screen to be as simple as possible
  • it gives the impression that the custom field needs to be filled in
  • it gives the impression that the content of the custom field is somehow related to elegibility of membership, therefore may induce hesitation to signup.

So from an ux point of view, is it possible to have an option to have it removed from signup, yet still available as a field to enter in the profile afterwards. (Like “location” and such)

إعجابَين (2)

This has come up a few times on meta, perhaps we should add a

[ ] show at signup

field here @sam?

16 إعجابًا

You can use the (dasherized) field name now… so

.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.

9 إعجابات

+1 أود خيار [ ] إظهار عند التسجيل.

نهج CSS المخصص لـ @Kris لا يفعل ما نريده هنا، لأنه إذا استخدمت هذه التقنية، فسيتم إخفاء الحقل على حد سواء في نموذج التسجيل وفي الملف الشخصي.

حالة الاستخدام الخاصة بي: نريد السماح للمستخدمين بتحديد ضمائرهم اختياريًا باستخدام حقل نصي مجاني (لأن بعض المستخدمين يستخدمون ضمائر غير عادية للإشارة إلى أنفسهم)، ولكن حقلًا كهذا هو فخ للأشخاص الذين يعتقدون أن “الضمائر” هي إهانة سياسية؛ يلهم المستخدمون الجدد لكتابة شيء وقح في المربع.

نعتقد أنه من الأفضل عدم إظهار الحقل عند التسجيل، ولكن السماح للمستخدمين المنخرطين بتعيينه عن طريق تخصيص ملفاتهم الشخصية.

إعجابَين (2)

CSS الخاص بي أساسي جدًا، ولكني أعتقد أنه يمكنك استهداف الصندوق فقط في صفحة التسجيل باستخدام هذا:

.d-modal.create-account .user-field-YOUR-FIELD-NAME {
    display: none;
}

.invites-show .user-field-YOUR-FIELD-NAME {
    display: none;
}

ويجب أن يتيح لك ذلك استخدام الحقل بشكل طبيعي في أماكن أخرى.

تعديل: لقد أضفت شيئًا لصفحة الدعوات أيضًا، إذا كنت تستخدم الدعوات. :+1:

3 إعجابات

هل نحتاج إلى .d-modal هنا؟ لا أريد أن أفترض كيف سيبدو نموذج التسجيل في المستقبل.

أخشى أنني لا أعرف الإجابة على ذلك. يجب أن يكون من السهل تعديله إذا تغيرت الأمور في أي وقت.

تعديل: لقد اختبرت للتو، وإزالته من المقتطف أعلاه يجعل الصندوق يظهر مرة أخرى، لذا يبدو أنه مطلوب لكي تعمل هذه القطعة المحددة.

نأمل أن يتمكن شخص لديه المزيد من الخبرة من المساهمة. :crossed_fingers:

3 إعجابات

مغلق لصالح Site setting to hide custom user fields from signup page