I have a drupal site that I am creating right now. I have 3 roles, and these are: Anonymous Authenticated Registered Users

On my "Registered Users" I wanted to have a different theme after they login. Do you have ideas on how to achieve this?

Best regards

link|improve this question

63% accept rate
feedback

3 Answers

up vote 1 down vote accepted
on hook_init
if global $user have role Registred
global $theme = 'theme_x';
link|improve this answer
feedback

You can use http://drupal.org/project/themekey

It should allow you to change the theme based on role of user.

link|improve this answer
feedback

Setting a completely different theme is a quite drastic method. If possible, I would try to use a single theme, set a class on the body tag indicating the user role and style those pages differently with just CSS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.