Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to redirect user to a specific page after they login if they belong to a certain role?

We have certain users in our member list that have a role "vendor" attached to them. All such members are to be redirected to a certain page upon login. How can this be accomplished?

like image 513
jini Avatar asked Aug 07 '10 08:08

jini


People also ask

How do I redirect a user to a specific page after login?

To redirect users to a specific page after login, you can simply add the redirect URL parameter in login form Shortcode. The redirect_url parameter allows you to redirect to a certain page after the user is logged in.

How do I create a login page that redirects based on user role in WordPress?

Setting Up Login Redirect by User Role in WordPress Simply click the 'Add New' button in the 'Redirection Rules' section. Then, select the 'User Role' condition from the 'Rule Condition' drop down and choose the user role from the drop down list.

How do I redirect a user after a successful login on WordPress?

WP Login and Logout RedirectUpon installation, you'll find the new Redirect Options menu in your sidebar. Click it, and you'll see two boxes: Login Redirect URL and Logout Redirect URL. Put the URL you want in and click Save Changes, and you're done. Redirect options in the WP Login and Logout Redirect plugin.


2 Answers

There is more than one way to skin this cat... This is my preferred Drupal 7 method:

function hook_user_login(&$edit, $account) {
  $edit['redirect'] = 'node/123';
}
like image 194
Felix Eve Avatar answered Sep 23 '22 00:09

Felix Eve


For Drupal 7

Action --> admin/config/system/actions - Redirect to URL

then enable your trigger module

Trigger --> /admin/structure/trigger/node

if your are trying to login redirect just follow this(select user tab in the page)

go to --> admin/structure/trigger/user

then Trigger: After a user has logged in

choose an action -->Redirect to URL and assign.

Then clear the cache.

It will work for you!

like image 21
Harikrishnan Avatar answered Sep 23 '22 00:09

Harikrishnan