Is there a way to hide the username option for accounts and registration, and just use email address? Users seem to be confused a little with display name and username both. Thanks.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Nikolai Shcherbin@rivervanrain
Nikolai Shcherbin - 0 likes
- Flying Dutchman@dennisnederlof
Flying Dutchman - 0 likes
- blogbids@blogbids
blogbids - 0 likes
- Matt Beckett@Beck24
Matt Beckett - 0 likes
- Team Webgalli@webgalli
Team Webgalli - 0 likes
- blogbids@blogbids
blogbids - 0 likes
You must log in to post replies.Only Email? Not.
Without Email? Yes.
Username and Password are required.
Use Sign in with Twitter if your users confused with default registration form
Thanks.
how to use default form registration and add 2 new cases add country and sex. and click register saver all database.? !thank
You can programmatically generate a username and allow users to log in with their email only.
You need to:
1. remove the input from the registration form
2. hook into the registration action and programmatically generate a unique username (probably based off their email)
3. set_input('username', $username);
@Flying dutchman : you can skip username and use email instead. Generate a unique and random username in the background when the form is submitted but before processing (as Matt explained).
@blogbids : use profile_manager plugin.
You helped me make a simple plugin to plugin profile_manager I understand, for example facebook plugin from registration, simply as that. Thank!!