Login to dashboard after seller login
-
Hi all,
On our portal we have used woocommerce with dokan multivendor plugin https://shoppingadviser.in/
I want to redirect sellers to dashboard page once they login. Woocommerce integrated with dokan.
As suggested by the dokan developers and searching for solutions i added the below code,
add_filter( ‘woocommerce_login_redirect’, ‘ckc_login_redirect’, 10, 2 );
function ckc_login_redirect( $redirect_url, $user ) {
// Change this to the url to Updates page
if( $user->roles[0] == ‘seller’ ) {
return dokan_get_navigation_url(‘dashboard’);
}
return $redirect_url;
}Able to redirect to the dashboard, only if they login from my-account page,
As my theme has a popup modal login unable to redirect to the seller dashboard.
Can anyone help me here about the modal popup login redirect to specific pages.
Thanks & regards
- The topic ‘Login to dashboard after seller login’ is closed to new replies.