The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

Change colors of account

I have a probleme I have created a field(select list) with some colors. I want to let my site users to choose the color(color of menus, blocks ...) of their account. hHow can I do this Thanks
3
votes
1answer
78 views

How to add html tags to account setting emails?

I am working on a project where I need to add some custom headers to the email which we send to the user on registration. Is there a module which support this functionality?
1
vote
3answers
45 views

Change wording of history (member since)

Is there a way to change the wording of "Member since" to something else?
1
vote
1answer
123 views

How can I disable account settings?

I am using Drupal 6 with the OpenAtrium distribution, and I'd like to completely remove the account settings menu. In other words, I don't want users (or, even better, certain users) from access ...
0
votes
1answer
95 views

How can i customize a menu to be intuitive for my users: show user name, have dropdown items

I am looking to create a user menu. The menu when not logged in should have two options: 1. create account 2. sign in. These items will be displayed in-line. Once logged in, i want the menu to have ...
0
votes
2answers
834 views

How to customize registration process in Drupal 7?

I want to customize default registration process in Drupal 7. The registration process includes 3 steps: Show some account types (in a page or form?). For example "personal", "business", ...
0
votes
0answers
15 views

Selectively override a Trigger?

I have a TRIGGER: AFTER CREATING A NEW USER ACCOUNT set up, but I am integrating social sign-in and don't wish the trigger to run in that situation. How could I override these triggers in specific ...
2
votes
2answers
226 views

restrict user from certain role to change their email

Is there any way I can restrict users from certain role to change their email address. Once they are registered I need them no to be able to change it in the edit settings page. I found how to ...
3
votes
1answer
178 views

hook_user_insert() vs hook_user()

can someone please explain the difference between hook_user_insert() and hook_user() with $op='insert' i mean is hook_user with $op='$edit' is invoked after a user create an account?? cos i am ...
0
votes
0answers
179 views

How not to display all user account fields on profile2 registration page?

I have several fields that I have already create for drupal core user account and I installed Profile2 recently for affiliate users. I only need few fields for affiliates, how do I prevent some of the ...
1
vote
0answers
113 views

Welcome email body not changing to reflect account settings

I'm in /admin/config/people/accounts and have changed the text that new users will be sent when signing up accounts, but the body of the messages remain the same, although the subject line is ...
0
votes
1answer
134 views

How to print the drupal username -without a link to it- inside the node profile?

So far the only thing that works is $name wich prints the username with the link. I´ve tried $account->name, and it won´t print anything at all (I´ve tried $author and $account_name; too, without ...
0
votes
0answers
93 views

Twitter module and posting to twitter

I have two questions about twitter module. I want to hide global twitter account from twitter_account_list_form, because authenticate user can delete global account, and i want to stop him. I try ...
2
votes
1answer
555 views

Get user Account form

I am trying the user account form(the one that comes in user/%/edit) of the logged in user, I have tried: drupal_get_form('user_profile_form'); & drupal_get_form('user_profile_form',1); ...