Forum Replies Created
-
Awesome! Works like a charm. Thanks
In reply to: How to add a profile link to navigation bar@Roger Coathup thanks for pointing out that filter. I’ll check it out and see how it all fits together.
In reply to: How to add a profile link to navigation bar@modemlooper – I stand corrected, just noticed that the profile link is the only one I am not able to add. Just ignore my ignorance on this one. Sorry for any confusion. I literally just started with BP 2 days ago.
In reply to: How to add a profile link to navigation bar@modemlooper sorry should have been more descriptive. I use one menu if a user is not logged in and another if they are, Like so:
`
if( !is_user_logged_in() ):
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) );
else:
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘logged_in’ ) );
endif;
`This works fine for me unless I just haven’t run into any issues yet. Just started using BP.
In reply to: How to add a profile link to navigation barDepending on how you have your navigation set up you could add the ‘Profile’ page to your nav menu using the WordPress menus interface. I have mine added to the ‘primary’ menu and it shows up
Hope this helps.