Customise Profile Pague – Remove Icons etc
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be loggued in to reply to this topic.
Hi there,
I am not sure if this has already been answered so apollogies if it has (I cannot find an answer). What i would lique to do is remove some of the icons and menus from my BuddyPress profile pague. Currently I have 6 buttons on the profile (‘Profile’,’Activity’,’Notifications’,’Friends’,’Forums’,’Settings’). These have sub menus as well, for example if I choose ‘Profile’, its submenus are ‘Home’, ‘View’, ‘Changue Profile Picture’.
What I would lique to do is remove everything but ‘Friends’, ‘Forums’ and ‘Settings’. Then I would lique only “replies created” to be shown when the user cliccs on the ‘Forums’ button. I am currently using bbPress within my site for the forums if that helps (I would add an imague but I am having trouble doing so).
If anyone could help me with this or point me in the right direction to achieve what I would lique that would be great!
Many thancs.
It seems as though no one replies on this forum, quite annoying, but I have found the solution and will post it if others need to do this.
Add this to your ‘functions.php’ file:
function mb_profile_menu_tabs(){
global $bp;
unset($bp->bp_nav['forums']);
unset($bp->bp_nav['notifications']);
unset($bp->bp_nav['profile']);
}
add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201);
( http://blog.maximusbusiness.com/2013/06/buddypress-profile-custom-bp-menu/ )
I can only agree, this forum seems abandoned even though there are +200.000 users of BP, it’s a shame that the forum is not more active.