i think i posted in the wrong forum
sorry
The BuddyPress specific Menu items, including the link to the members profile page are now only avaialble from the menu options in Customize, you need to go there to find the menu item you need
[Moved to another forum by OP request]
You can try this snippet which will add the link to main menu (aside About, Home etc):
function my_nav_menu_profile_link($menu) {
if (!is_user_logged_in())
return $menu;
else
$profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Awesome Profile') . '</a></li>';
$menu = $menu . $profilelink;
return $menu;
}
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
Another way to do this is explained in this topic.
thanx for the solution.
it appeared using screen option
but i have another problem
i am using wp multisite and the structure is
subdomain.maindomain/subsite
it is appearing on the main site from the screen options
i have buddypress network activated from the network menu
but it is not appearing on screen options in sub sites
i want to have My Profile in all my sub sites menu
Sorry, whithout the code snippet you use to add your menu, it is not possible to answer correctly.
i didn’t use the code snippet
i added it through screen options then bp links appeared as pages
and i added them to menu on the main site
And is it working for you now ?