Consentire che il campo "Name" possa essere disabilitato nella finestra di registrazione

Continuing the discussion from Can't remove Real Name if Admin disables them:

(Apologies if this belongs in UX)

Feature request: Allow the Name field to be disabled on the signup dialog as a settings option.

As per the linked thread, this is to allow more anonymous use, for example when full names are already being hidden throughout the forum.

An alternative way may be, when the "enable names” setting is turned off, do not show the Name field in the signup dialog. (this avoids adding an extra setting).

Hopefully that makes sense…

This is kind of the opposite to Making the name field required or removing it?

Can’t you simply hide it with a CSS override? It is already optional.

2 Mi Piace

Yes, I believe it could be solved in this way. The reason I suggest a change in behaviour is that it feels wrong that when you disable all uses of the full name it is still gathered. Hence I’m not sure if this is actually a UX thing.

Good point, which exact site settings should this be keyed off of?

I would suggest the “enable names” setting in the “Users” panel (at least in 1.2 it is).

Sulla nostra istanza potrebbe non essere consentito raccogliere email e nome delle persone, la cui combinazione è considerata PII sensibile. È stato possibile disabilitare completamente il campo nome all’iscrizione (senza nemmeno mostrarlo come campo opzionale)?

Email: Di recente sono stati sollevati argomenti al riguardo e la conclusione è che la verifica dell’email è una parte necessaria di Discourse. Immagino che si possa incoraggiare l’uso di un indirizzo email temporaneo, come quello di Guerrilla Mail.

Nome reale: Se non esiste un’opzione nel sito (non lo so, poiché io uso il nome reale), si potrebbe utilizzare CSS in un componente del tema per nascondere quella parte del modulo di registrazione.

1 Mi Piace

Chiaramente, l’email è indispensabile; se riusciamo a nascondere completamente il campo nome in modo che le persone non lo compilino, sarà sufficiente.

Non sono familiare con il processo di modifica del CSS per Discourse. Dove posso trovare una buona documentazione relativa a Discourse da consultare?

Vedi Making custom CSS changes on your site

1 Mi Piace

Questo nasconde il nome dal modulo di registrazione per me:

.create-account-form .input-group:nth-of-type(3) {display: none;}

È stata aggiunta un’opzione per nascondere il campo del nome alla registrazione in FEATURE: Add option to hide full name input at signup by OsamaSayegh · Pull Request #30471 · discourse/discourse · GitHub.
Puoi scegliere “Opzionale, nascosto alla registrazione” nell’impostazione del sito Requisito del nome completo.

5 Mi Piace

Un post è stato diviso in un nuovo argomento: Puoi unire gli input email e nome utente nel modulo di registrazione?