Hello
I added this in hopes that once I logged in I would go to the page /front but it didn’t work
add_action( ‘template_redirect’, ‘wpdm_login_redirect’ );
function wpdm_login_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option(‘__wpdm_login_url’) ):
wp_redirect( home_url(‘/front/’) );
exit();
endif;
}