-
Author
Tagged: buddypress, menu
-
July 9, 2014 at 21:57 #22181JonbieParticipant
Hi,
I am trying to change the order of my buddypress menu tabs. so far i have been able to change all menu tabs other than the media tab. Here is the code i am using in my Themefunctions.php .
function my_change_profile_tab_order() {
global $bp;$bp->bp_nav[‘activity’][‘position’] = 10;
$bp->bp_nav[‘friends’][‘position’] = 20;
$bp->bp_nav[‘followers’][‘position’] = 30;
$bp->bp_nav[‘groups’][‘position’] = 40;
$bp->bp_nav[‘events’][‘position’] = 50;
$bp->bp_nav[‘media’][‘position’] = 60;
$bp->bp_nav[‘following’][‘position’] = 70;
$bp->bp_nav[‘messages’][‘position’] = 80;
$bp->bp_nav[‘forum’][‘position’] = 90;
$bp->bp_nav[‘profile’][‘position’] = 100;
$bp->bp_nav[‘notifications’][‘position’] = 110;
$bp->bp_nav[‘settings’][‘position’] = 120;
$bp->bp_nav[‘wp-social-invitations’][‘position’] = 130;
}
add_action( ‘bp_setup_nav’, ‘my_change_profile_tab_order’, 999 );Anyone any ideas ?
August 12, 2014 at 21:56 #25506AbeKeymasterHi, really sorry for the late reply. Somehow it skipped our queue. Promise it won’t happen again 🙂
Try adding that code in wp-content/plugins/bp-custom.php
If the file does not exist then create it and add a<?php
on the first line of the file and then put the codeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.March 23, 2015 at 16:30 #51176AbeKeymasterHi, here is a more detailed topic: http://blog.maximusbusiness.com/2013/04/bp-profile-nav-positions-names/#change-subnav-tab
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer. -
AuthorPosts
The topic ‘buddypress menu order not changing’ is closed to new replies.