I’m using pie-register to sign up artist members and return them to an artist-page once a login is complete. For admin users I have an admin-page that uses wp_login_form{} with a redirect back to the admin-page once login is complete. However, since I installed pie-register, admin users end up in the dashboard. I have tried using [pie-register-login] on the admin-page to see if I can get admins at least redirected to the artist-page, but admins still end up in the dashboard. Is there a hook I can use to redirect admins? Or is there a [pie-register-login] parameter I can use? My login code for admins is:
$redirect = esc_url(home_url(‘/admin-page/’)) ;
$args = array(‘redirect’ => $redirect);
wp_login_form($args);
Thanks.