@macfan that's understandable, I know not everybody is comfortable signing their contributions away, so they are welcome to fork NodeBB for their own purposes.
Contributions back upstream are welcome and encouraged but not required 🙂
Is it possible to add a field to the registration form, which the user must fill in in order to register?
I need the users to enter a phone number upon registration.
Is there any way to do this?
@Edgar-Doiron yes you can add fields to the registration form using a plugin. The plugin needs to listen to the hook filter:register.build
to add the field and filter:register.check
to verify the data entered in the fields.
@pichalite What is the name of the plugin?
@hnahli there is no plugin available. you have to write a plugin using those hooks to be able to add fields to the registration form.