then just change the code:
COPY CODE
/* Filter the redirect url for login*/
add_filter("login_redirect","kleo_redirect_to_profile",100,3);
function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
/*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
if(!is_super_admin($user->ID))
return 'http://mysite.com/members';
else
return $redirect_to_calculated; /*if site admin*/
}
replace http://mysite.com/members with your own
This needs basic PHP/WORDPRESS knowledge
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.