-
Baconbits replied to the topic [Resolved] Need guidance about member links in the forum How-to & Troubleshooting 11 years, 10 months ago
Found a solution to 1:
/ Filter wp_nav_menu() to add profile link
[Read more]
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( '/' ) . '"… -
Baconbits started the topic [Resolved] Need guidance about member links in the forum How-to & Troubleshooting 11 years, 10 months ago
Forgive me if this stuff has been asked in the past, I am constantly searching and browsing, website almost complete, there are just a few more kinks I need worked out before I go live.
1. I want to add a separate link up top to direct users to their member page (www.website.com/members/username). How do I set this up so it takes them to THEIR…[Read more]
@seriousdon
Active 10 years, 5 months ago