• Hello, been trying the plugin for a while now and want to use it for my live site but I have a problem that I’m having trouble with.

    I have ultimate member plugin installed in my website.
    in the messages page , when I click the user , It is redirected to ultimate member profile page. I dont use the deault ultimate member profile pages in my site. Instead I use author pages. so my question is how can I change this link to author pages ?

    thanks in advance.
    Cheers.
    Baris

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author wordplus

    (@wordplus)

    Hi there!

    Its possible to override with PHP only.

    For example:

    add_filter( 'bp_core_get_userlink', 'custom_member_link', 20, 2 );
    function custom_member_link( $link, $user_id ){
    
    $link = get_author_posts_url($user_id);
    
    return $link;
    }
    Thread Starter baedyllion

    (@baedyllion)

    thank you, that was fast. I’ll try and give feedback.
    Cheers.
    Baris.

    Thread Starter baedyllion

    (@baedyllion)

    It worked perfectly. thank you very much for your help.
    Cheers.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to redirect user profile to author page?’ is closed to new replies.