• Resolved Roeland Sanctorum

    (@roelandabovesecondbe)


    Ok so we uploaded 149 members (whom are docters in specific area’s), each area shows all their docters. Everyone can view the directories but when they click on the member, it redirects to my account (admin) settings (when i’m logged out it redirects to home page). Which it should not do and simple show the member’s info.

    PS: the page settings for user page are not restricted for public.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @roelandabovesecondbe

    Please check if user role has access to visit other users’ profile and regarding logged out users, you can add following code snippets to your theme’s functions.php or use “code snippets” plugin to add them.

    add_filter( 'um_is_private_filter_hook', function( $value, $privacy, $user_id ){
    	if( ! is_user_logged_in()){
            return false;
        }
    
        return $value;
    },50,3 );
    Thread Starter Roeland Sanctorum

    (@roelandabovesecondbe)

    Hi,

    Yes the user role has access to visit other users profile is checked. But that does not do the trick.

    What I also discovered is that when you hover over a member in a directory. They all go to the same link
    e.g:
    This is one of my directories:
    https://harno.abovesecond.be/huisartsen-wachtdienst-grimbergen-beigem-hombeek/

    But when you hover over all the different members, they all go to the same link: https://harno.abovesecond.be/user/admin_h4ow2h05/
    However, when you click on the link you get redirected to the homepage.

    Offcourse all these members should link to their specific profile page

    Plugin Support Aswin Giri

    (@aswingiri)

    Hello @roelandabovesecondbe

    I checked your directory page link and looks like all of the profiles are linked to same URL, do you have any custom codes added to your site?

    Have you tried plugins/theme conflict test on your site? If you have not, please follow this article and see if this solved the issue.

    Plugin Support andrewshu

    (@andrewshu)

    Hi @roelandabovesecondbe

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Member profile not visible’ is closed to new replies.