This topic has 7 replies, 3 voices, and was last updated 10 years by mpitka.

  • Author
  • #9034
     mpitka
    Participant

    Hi!

    I have faced one problem after WP-update. It’s related to menus.

    The most important menu item: “My profile” has been changed so that every user goes to “Admin’s profile”. I looked at WP-menus and there is:

    that this menu item links to: http://boo.fi/members/admin/

    I can’t figure out how I can change it back that it will redirect to users own profile?

    #9035
     mpitka
    Participant

    ideas? 🙂

    #9041
     mpitka
    Participant

    I have tried to find that page from pages -list but it’s just not there. Own profile -link is absolutely dissapeared. What can I do?

    #9055
     escort
    Participant

    I can try to help you… Could you post a screen print?

    #9058
     mpitka
    Participant

    I don’t know if it helps to post print screen. But here it is:

    https://www.dropbox.com/s/51jije0p14pix12/screen.png

    I don’t have any menu item for that (from WP menu settings). It just suddenly dissapeared 🙁

    #9080
     mpitka
    Participant

    I searched this with Google and found a code to functions.php

    COPY CODE
    
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
    function my_nav_menu_profile_link($menu) { 	
    if (!is_user_logged_in())
    return $menu;
    else
    $profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('Own profile') . '</a></li>';
    $menu = $menu . $profilelink;
    return $menu;
    }
    

    However, this adds link just fine to end of the menu. I want it to be the first one. How to do this? 🙂

    #9122
     Abe
    Keymaster

    To have it the first one I guess you can change this line
    $menu = $menu . $profilelink;
    with
    $menu = $profilelink . $menu;

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #9148
     mpitka
    Participant

    Works perfectly! Thank you so much!

Viewing 8 posts - 1 through 8 (of 8 total)

The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?