anonymized-12966443
(@anonymized-12966443)
You can put this in your functions.php. I have created a page account and redirect them to there.
function login_redirect( $redirect_to, $request, $user ){
return home_url('/account');
}
add_filter( 'login_redirect', 'login_redirect', 10, 3 );
Hello @justbruno,
You can do it through the code snippet from above, but there’s also an option to do this through the pms-login shortcode, it only needs a parameter added. See here: https://www.cozmoslabs.com/docs/paid-member-subscriptions/shortcodes/#Redirect_User_after_Login
Regards.
Thanks @heathcliff2013 and thanks @raster02 !!