• I have three menus: One for public(10), one for club members(9), one for admin(11). The menu for club members goes first to profile instead of home, but does correctly present menu 9 after exiting the profile . I added the code below to the child functions.php, but the system refuses to save it, complaining that the ‘:’ on line 41 is unexpected. What is wrong here?

    
    
    function my_wp_nav_menu_args($args = '') {
    	// Logged in menu to display;Public = 10 Menu = 9 Admin = 11
    	// Public is for non-members Menu is for HFA members Admin is for Admin functions
    
    	if ( is_user_logged_in() ) {
    
    		if ( current_user_can( 'activate_plugins' ) ) {
    			$args['menu'] = 11; // admin only menu
    		} else {
    			$args['menu'] = 9;
    		}
    
    	} else {
    		// Non-logged-in menu to display
    
    		$args['menu'] = 10;
    	}
    	return $args;
    }
    add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args');
    
    function ur_redirect_after_login( $redirect, $user ) {
    return ‘https://www.hawesfamilyassociation.com’ ;
    }
    add_filter( ‘user_registration_login_redirect’, ‘ur_redirect_after_login’, 10, 2 );
Viewing 9 replies - 1 through 9 (of 9 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi there,

    From a quick look at the code you have provided it could the character you might be using for the quotes. What are you using in order to edit the files?

    Thread Starter hsysgrp

    (@hsysgrp)

    Absolutely right, changed the paired squiggles to apostrophes and functions.php was updated with the edit. However the user is still redirected to the profile.php page instead of the home page that does display the correct menu 9.

    function ur_redirect_after_login( $redirect, $user ) {
    return ‘https://www.hawesfamilyassociation.com’ ;
    }
    add_filter( ‘user_registration_login_redirect’, ‘ur_redirect_after_login’, 10, 2 );
    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    I have a weird feeling that might not be the correct filter so it’s not redirecting. I think the one you want is the login_redirect filter instead. So it would be

    add_filter( 'login_redirect', 'ur_redirect_after_login', );

    This is a good example of that as well https://developer.www.ads-software.com/reference/hooks/login_redirect/#comment-2074

    Thread Starter hsysgrp

    (@hsysgrp)

    I added add_filter( ‘login_redirect’, ‘ur_redirect_after_login’, ); but the logged in user is still directed to the profile page. Why is there a comma after login if there are no parameters? The return is the URL, right,?

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    add_filter( 'login_redirect', 'ur_redirect_after_login', 10, 3 );
    Didn’t copy/paste it all as it was an example.

    Thread Starter hsysgrp

    (@hsysgrp)

    add_filter( 'login_redirect', 'ur_redirect_after_login', 10, 2 );

    Still have the original problem, admin(menu=11) and a public user(menu=10) are presented with the correct menus and directed to the Home page; a member user (menu=9)is directed to hawesfamilyassociation.com/wp-login/profile.php.

    The 2 parameters are the $redirect (the return URL, and the $user, correct? the user is global here?

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    There are 3 that are being passed. The docs page I linked shows what they are as well. The inline docs also let you know what ones are passes:https://github.com/WordPress/wordpress-develop/blob/6.2/src/wp-login.php#L1277-L1277

    Thread Starter hsysgrp

    (@hsysgrp)

    Thank you for your response.

    on line 1328 is

    // If the user doesn’t belong to a blog, send them to user admin. If the user can’t edit posts, send them to their profile.

    Now I know why the member lands on the profile. The issue is, how do I change the redirect code for the member user to be redirected to the Home page of the appropriate menu?

    Thread Starter hsysgrp

    (@hsysgrp)

    I solved my problem of different menus for different viewers. The relevant code in the functions.php file in the twentyfourteen child directory is below.

    The correct code is displayed , and subscriber and contributor members are directed to the blog page, and public and admin land on the Home page with the appropriate menus. Thank you for your help.

    function my_wp_nav_menu_args($args = '') {
    	// Logged in menu to display;Public = 10 Members = 9 Admin = 11
    	// Public is for non-members Members is for HFA members Admin is for Admin functions
    
    	if ( is_user_logged_in() ) {
    
    		if ( current_user_can( 'activate_plugins' ) ) {
    			$args['menu'] = 11; // admin only menu
    		} else {
    			$args['menu'] = 9;
    		}
    
    	} else {
    		// Non-logged-in menu to display
    
    		$args['menu'] = 10;
    	}
    	return $args;
    }
    add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args');
    
    function custom_login_redirect( $redirect_to, $request, $user ) {
        // Get the current user's role
        $user_role = $user->roles[0];
     
        // Set the URL to redirect users to based on their role
        if ( $user_role == 'subscriber' ) {
            $redirect_to = '/blog/';
        } elseif ( $user_role == 'contributor' ) {
            $redirect_to = '/blog/';
        }
     
        return $redirect_to;
    }
    add_filter( 'login_redirect', 'custom_login_redirect', 10, 3 );
    
Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Redirect after login’ is closed to new replies.