Is it possible to remove email,password (or to inherit parent's email and password) and nickname fields and replace them with another fields? I want an User to be able to create sub-users on the fly without need of email, password and nickname (because sub-users will be owned/control by the parent user)
Comments
Comment #1
shawn dearmond commentedYeah, in my particular use-case, the users will be children, and will likely not have an email address.
See: #765944: CC parent when subuser is sent email.
With that issue solved, then emails sent to the children would also be sent to the parents.
Comment #2
sokrplare commentedSubuser just reuses the Drupal user registration form so you'd want to look at other modules for how to modify the user reg form and then apply it back here.
Check out http://drupal.org/project/realname_registration and maybe http://drupal.org/node/286401. Email is pretty core - we had a site that had to not rely on it so we did some hacking in a module to auto-generate a unique fake email address behind the scenes since it is so fundamental to the Drupal user process...it wasn't pretty.