I have setup BuddyPress on my dev site in the members section at jabbragency.net/jb/scotianaires/.
I have Menu Swapper installed and it works great on all pages where I want it in the member section except for BuddyPress.
I have tried adding the following code to my child theme functions.php but that is not working.
// =============================================================================
// Sets Custom Menu For Buddypress Pages
// =============================================================================
//
// Replace 'is_buddypress' with any other conditional tag
//
add_filter( 'wp_nav_menu_args', 'custom_buddypress_menu' );
function custom_buddypress_menu( $args ) {
if ( is_buddypress() ) {
$args['theme_location'] = 'primary';
$args['menu'] = 'Custom Menu';
}
return $args;
}