Questions related to allowing users to sign up for accounts, modifying the user registration form, etc.
17
votes
6answers
19k views
User Registration Module for Drupal
Drupal uses email for user registration purpose. Instead of the out-of-box Drupal user registration that requires user to specify a username and email address, I want a full-fledged user registration ...
12
votes
2answers
359 views
How to make an “Add more logins” similar to Stackoverflow?
I am using OpenID Selector module to integrate OpenID logins to my website; the same service used by Stackoverflow for login/registration. However, how can I add an option to "Add more logins" like ...
11
votes
6answers
4k views
Disable register email notification
I have made a deep research over the web and I also tried a lot of alternative solutions, but I didn't find any solution to disable the email notification for new users.
In my User Settings, I have ...
7
votes
5answers
558 views
How to let users register with their Facebook accounts?
I would like to let visitors choose between signing up by using Drupal's core sign-up system, or to register using their Facebook account.
I looked at a few Facebook related modules but that was a ...
6
votes
2answers
124 views
How can I force users to provide a reason when cancelling their accounts?
I would like to force users to provide a reason for cancelling (a text area would be ideal) their accounts. I have had several users close their accounts on one of my sites recently and I would like ...
6
votes
1answer
502 views
Can you create new users without entering email, then prompt user upon first login?
I want the site administrator to be able to create a user, submitting only a username and a dummy password.
This information would then be 'manually' sent by the administrator to the user, whom upon ...
6
votes
1answer
278 views
New User Registration Sequence for Services 3.4?
This comment outlines a working way to login with the new CSRF token:
POST to /rest/user/login (nothing in headers). Construct the $cookie from session name + id
GET to /services/session/token ...
5
votes
1answer
6k views
Changing the registration form
I would like to revise the default new user registration form in Drupal 7.
Rather than to requst "username", I want to request "full name" with helper instructions to enter the text "username is your ...
5
votes
1answer
493 views
Is there a hook after user confirmation?
I want to add a content type after a user registers to the site.
I tried hook_user_save() but it saves the content type before the user confirms his e-mail.
Is there a hook after e-mail ...
5
votes
2answers
1k views
How should I handle container form elements?
I have added some custom fields to the register user form and I'm discovered that they are sent back, packaged in a form element of type "container". My code needs to handle all kind of different ...
5
votes
2answers
2k views
Drupal 7 user register form in overlay on page load
One of my requirements is to show the user registration form in an overlay kind of interface.
From the Examples module issue queue, comment #14 http://drupal.org/node/930058 I found a module, ...
4
votes
5answers
508 views
Is it possible to allow duplicate usernames ?
I'm working on a Community Website and 99% of the time a new user has an unique username. But for my requirement, it is required to allow duplicate usernames.
Is there a way to change drupal default ...
4
votes
4answers
3k views
Print registration and login forms on same page
How do I print the register and login forms on the same page?
I think I am really looking just for the form IDs, but if you've got the right render function handy it would be very appreciated.
4
votes
2answers
726 views
How can I disallow spaces in usernames?
Drupal allows spaces in usernames, is there an easy way to stop this?
Also, where is the documentation on the username specs? What are the min/max lengths and which characters are allowed?
4
votes
4answers
375 views
How can anonymous users be allowed to post while still maintaining content integrity?
A little background: As you see on http://charlotte.ebayclassifieds.com, if you click 'post an ad' and then choose a category, you can fill out the form and submit content without having to sign up. ...