In my company there is no need to specify an email on the forum.
Could you tell me, please, is there any way to make the email field optional during registration?
Where in the sources is checked whether the email is specified?
@Evgeny Try the following config setting:
$Configuration['Garden']['Registration']['NoEmail'] = true;
This is probably the most complex form in the whole system due the 100s of plugins we have integrating with it, but it's for most part setup in EntryController. You can find the actual place where this config is fetch on the following line.
@charrondev, thank you!
That's what I needed!
Thnku for the information
Comments
In my company there is no need to specify an email on the forum.
Could you tell me, please, is there any way to make the email field optional during registration?
Where in the sources is checked whether the email is specified?
@Evgeny Try the following config setting:
This is probably the most complex form in the whole system due the 100s of plugins we have integrating with it, but it's for most part setup in EntryController. You can find the actual place where this config is fetch on the following line.
@charrondev, thank you!
That's what I needed!
Thnku for the information