Quantcast
Channel: Latest posts from timonweb.com
Viewing all articles
Browse latest Browse all 93

How To Redirect User To Any Page After Login in Drupal 7

$
0
0

There are loads of modules that can do this for you, but why to install one more module if you can do this with one string of code? The best thing is that approach below does a redirection even if you login from user login block.


Just put the following code into your custom module:

/**
 * Implements hook_user_login().
 */function module_name_user_login(&$edit,$account){// Don't redirect on password reset.$current_menu_item= menu_get_item();if($current_menu_item['path']=='user/reset/%/%/%'){return;}// Redirect user to profile page after the login.$_GET['destination']='user';}

You can find this snippet at dropbucket.org here: http://dropbucket.org/node/746
UPDATE 03/08/2013: Added several lines to prevent redirection during password reset.
Read on about How To Redirect User To Any Page After Login in Drupal 7

Viewing all articles
Browse latest Browse all 93

Trending Articles