Search Results for 'bp_core_remove_nav_item'
-
AuthorSearch Results
-
August 26, 2012 at 3:03 pm #140276
In reply to: How to remove a tab from profile ?
modemlooperModerator`function my_func_remove_xprofile_tabs(){
global $bp;
bp_core_remove_nav_item( ‘events’ );
}
add_action( ‘bp_setup_nav’, ‘my_func_remove_xprofile_tabs’, 15 );`August 26, 2012 at 12:08 pm #140270In reply to: How to remove a tab from profile ?
Roger CoathupParticipant@shemada – to do this properly, you need to use the bp_core_remove_nav_item() function.
Add a call to it in your theme’s functions.php file passing in the ID of the Events nav item.
If you Google on here for ‘remove_nav_item’ you should find plenty of previous threads / examples.
August 14, 2012 at 5:46 pm #139440In reply to: remove “activity” tab from user profile
mysticaMemberthis made the trick
function mj_remove_groups_nav() {
bp_core_remove_nav_item( ‘activity’ );}
add_action( ‘bp_setup_nav’, ‘mj_remove_groups_nav’, 15 );August 6, 2012 at 8:26 pm #138556DavidMemberAND I solved my own problem by typing it out here.
YES – bp_core_remove_nav_item( ‘invite-anyone’ );
My other solution was not working because it is not a subnav. As soon as I typed that I realized it.
Thanks again for help.
November 3, 2011 at 1:45 pm #123678In reply to: Moving Links around
leethompsonMemberok, I found out if you remove a parent item the page(function) is removed too, So I removed this function:
`function boone_remove_blogs_nav() {
bp_core_remove_nav_item( ‘privacy’ );
bp_core_remove_nav_item( ‘settings’ );
bp_core_remove_nav_item( ‘invite-anyone’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_blogs_nav’, 15 );`and I used css to hide the parent item. In my themes main css I added :
`#user-privacy {
display: none !important;
}#user-settings {
display: none !important;}
`Now I will write a javascript function to highlight the right parent item if I am in the proper section.
Then i will try to write a bp global function to re-assign subnav items to different parent item.
November 3, 2011 at 1:29 pm #123676leethompsonMemberThis is a great post but what about moving sub links to a new parent item, this kinda works but if I remove the parent item the function stops. in my themes functions.php
`function remove_blogs_nav() {
bp_core_remove_nav_item( ‘privacy’ );
bp_core_remove_nav_item( ‘settings’ );
bp_core_remove_nav_item( ‘invite-anyone’ );
}
add_action( ‘bp_setup_nav’, ‘remove_blogs_nav’, 15 );function bp_add_create_group_subnav() {
global $bp;
$groups_link = ‘/groups-2/’;
$settings_link = $bp->loggedin_user->domain ;/* Add the subnav items to the groups nav item */
if (function_exists(‘bp_core_new_subnav_item’)) {
bp_core_new_subnav_item( array(
‘name’ => __( ‘Create Clan’, ‘buddypress’ ),
‘slug’ => ‘create’,
‘parent_url’ => $groups_link,
‘parent_slug’ => $bp->groups->slug,
‘screen_function’ => ‘groups_screen_group_home’,
‘position’ => 40,
‘item_css_id’ => ‘home’ ) );bp_core_new_subnav_item( array(
‘name’ => __( ‘Settings’, ‘buddypress’ ),
‘slug’ => ‘settings’,
‘parent_url’ => $settings_link,
‘parent_slug’ => $bp->profile->slug,
‘screen_function’ => ‘profile-settings’,
‘position’ => 30,
‘item_css_id’ => ‘profile-settings’ ) );bp_core_new_subnav_item( array(
‘name’ => __( ‘Privacy’, ‘buddypress’ ),
‘slug’ => ‘privacy’,
‘parent_url’ => $settings_link,
‘parent_slug’ => $bp->profile->slug,
‘screen_function’ => ‘profile-privacy’,
‘position’ => 30,
‘item_css_id’ => ‘profile-privacy’ ) );}
}
add_action(‘bp_setup_nav’, ‘bp_add_create_group_subnav’);
`
If I comment out :
`// bp_core_remove_nav_item( ‘privacy’ );
// bp_core_remove_nav_item( ‘settings’ );`The sub links are in the Profile item, and functional, but still link to each original man item.
thanks Boone you are a lot of help
October 2, 2011 at 11:41 am #121845In reply to: Problem with removing Home in group
Sven LehnertParticipantadd it in your function.php
function remove_group_home_nav() {
bp_core_remove_nav_item( bp_get_current_group_slug(), ‘home’ );
}
add_action( ‘bp_setup_nav’, ‘remove_group_home_nav’ );September 5, 2011 at 2:05 am #119585jonnyaukParticipantAh, my mistake – this code does actually work HOWEVER , I can’t get it to hide ‘Send Invites’ or anything else under the group menu… do I have to do something different?
`function ja_remove_navigation_tabs() {
bp_core_remove_nav_item(‘friends’);
bp_core_remove_nav_item(‘settings’);
}
add_action( ‘bp_setup_nav’, ‘ja_remove_navigation_tabs’, 15 );`April 10, 2011 at 9:44 pm #109947r-a-yKeymaster@nahummadrid – This is a known bug. Using bp_core_remove_nav_item() will remove access to those pages as well. Right now, I’d suggest hiding the nav item via CSS or by hacking the $bp global to remove the item.
April 10, 2011 at 11:43 am #109906NahumParticipant`function boone_remove_groups_nav() {
bp_core_remove_nav_item( ‘groups’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_groups_nav’, 15 );
`
When I put in functions it doesn’t work at all. The only way i get this to work is putting it in the BP-Custom but then it cuts off all access to groups and forum subpages….can’t figure whyApril 8, 2011 at 2:50 pm #109823NahumParticipantI thought the same would work for groups…but it’s throwing the group count # up above the header when I use alone or in conjunction with the blogs snippet.
`function remove_groups_nav_for_zero() {
global $bp;
if ( bp_groups_total_count_for_user() == 0 )
bp_core_remove_nav_item( $bp->groups->slug );
}
add_action( ‘bp_setup_nav’, ‘remove_groups_nav_for_zero’, 11 );
`Any ideas why this is happening…and not with the blogs one.
March 8, 2011 at 3:43 am #107146In reply to: Only members get profiles
pcwriterParticipantYou can do this with the s2member plugin. In the “API/Scripting” section, you’ll find some advanced conditionals that can be added in your theme templates, or included in a custom function. If you’re using s2member, you could try adding this to your theme’s functions.php file… should work anyway
`function remove_member_profile_nav() {
if (!current_user_can(‘access_s2member_level1’)) {
bp_core_remove_nav_item( ‘profile’ );
}
}
add_action( ‘bp_setup_nav’, ‘remove_member_profile_nav’, 15 );`January 20, 2011 at 8:21 pm #103461In reply to: Hide General Settings
r-a-yKeymasterAdd the following to your theme’s functions.php:
`function ray_bp_remove_settings() {
global $bp;// removing the existing settings tab
bp_core_remove_nav_item( $bp->settings->slug );
}
add_action( ‘init’, ‘ray_bp_remove_settings’, 0 );function ray_bp_readd_settings() {
global $bp;// add a new settings tab to use notifications as default tab
bp_core_new_nav_item( array( ‘name’ => __(‘Settings’, ‘buddypress’), ‘slug’ => $bp->settings->slug, ‘position’ => 100, ‘show_for_displayed_user’ => false, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘default_subnav_slug’ => ‘notifications’ ) );// bug in bp_core_remove_subnav_item(), we have to hack the screen function so it displays the notifications screen when you land on /settings/
if ( $bp->current_component == $bp->settings->slug && $bp->current_action == ‘general’ )
add_action( ‘wp’, ‘bp_core_screen_notification_settings’, 3 );// add back the subnav notifications tab
$settings_link = $bp->loggedin_user->domain . $bp->settings->slug . ‘/’;bp_core_new_subnav_item( array( ‘name’ => __( ‘Notifications’, ‘buddypress’ ), ‘slug’ => ‘notifications’, ‘parent_url’ => $settings_link, ‘parent_slug’ => $bp->settings->slug, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘position’ => 20, ‘user_has_access’ => bp_is_my_profile() ) );
}
add_action( ‘init’, ‘ray_bp_readd_settings’ );`Tested lightly. Encountered a few bugs, but this will work…
November 22, 2010 at 10:32 am #98864In reply to: Disable Activity Stream for Profiles?
Brajesh SinghParticipantHi,
The private updates on group should not be visible to anyone other than the profile owner. It means something is wrong, you should check other plugins.
btw, yes, you can remove the activity section from profile. put the following code in your theme’s functions.php`
global $bp;
bp_core_remove_nav_item($bp->activity->id);
`
But this will make the profile inaccessible, as activity is set as the default profile component. so you may want to put the following code in bp-custom.php
`
define(“BP_DEFAULT_COMPONENT”, “profile”);
`
hope that helps.September 21, 2010 at 5:09 pm #93042youngmicroserfParticipantI’m bumping this because the @-mention above didn’t work, apparently.
for some reason, your suggested solution doesn’t work. I suppose it has to do with the hook, but using bp_core_remove_nav_item(‘groups’) doesn’t work at ‘bp_setup_nav’, while it does work at the point @mariochampion suggested.
Here’s a problem, though, in my installation, when I remove the nav link, I am no longer able to access group pages. I can access the group directory and groups will be displayed there, but clicking on a group will take me to the front page. Is this a bug? It seems like it, since the function is supposed to only remove the navigation item, not access to the feature, am I right? Or am I not getting something? Is there a better way to remove the navigation item?
September 21, 2010 at 6:05 am #92986youngmicroserfParticipantHmm. Is this the intended effect? I removed the “groups” element from the navigation bar on the profile using the bp_core_remove_nav_item-function, but after doing that I was no longer able to access any group and after directly entering the group’s URL I will be redirected to the homepage. Is there any way to remove items from the *navigation* but keep them available for direct access? Bizarrely, I am able to display the groups directory page when the bp_core_remove_nav_item(‘groups’)-function is active, but not individual group homepages. Clicking on a group name will take me to the homepage.
Are there other options for menu item removal?
Thanks!
September 21, 2010 at 5:44 am #92984youngmicroserfParticipant@Boone Gorges,
using bp_core_remove_nav_item( ‘blogs’ ) at bp_setup_nav didn’t work for me. But putting it in mariochampions function right after “global $bp” did – any idea why?
sorry, but I’m new to BP, and I can’t find the xprofile-settings.php you’re referring to above – could you give me a hand? Could you also indicate where you changed the slugs in the copied file?
Thanks!
September 7, 2010 at 11:51 am #91760Boone GorgesKeymaster@blogmudgeon Glad to help
@ri-kun bp_core_remove_nav_item doesn’t take multiple arguments. Try something like:
`<?php function boone_remove_blogs_nav() {
bp_core_remove_nav_item( ‘blogs’ );
bp_core_remove_nav_item( ‘groups’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_blogs_nav’, 15 ); ?>`Add additional lines for nav items you want to remove. And make them lowercase, as the names might be case-sensitive and they are almost certainly lowercase when they are initially added.
functions.php, in your theme directory, is the appropriate place to put this. There should be no function called bp-functions.php.
September 7, 2010 at 4:05 am #91731ri-kunParticipantwait, I tried to add this on my bp-functions.php and functions.php but it didnt remove anything from the nav:
`<?php function boone_remove_blogs_nav() {
bp_core_remove_nav_item( ‘Profile’,’Blogs’,’Quick Post’,’Messages’,’Friends’,’Groups’,’Points’,’Settings’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_blogs_nav’, 15 ); ?>`September 6, 2010 at 4:25 pm #91667Boone GorgesKeymasterThe following function, placed into your theme’s functions.php or bp-custom.php file, will remove the Blogs nav item from the Members section of the site:
`function boone_remove_blogs_nav() {
bp_core_remove_nav_item( ‘blogs’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_blogs_nav’, 15 );`Other top-level nav items can be removed by replacing ‘blogs’ with the appropriate name. Subnav items will work in a similar way, except using `bp_core_remove_subnav_item` and the extra $parent_id argument:
`function boone_remove_friends_activity_nav() {
bp_core_remove_subnav_item( ‘activity’, ‘friends’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_friends_activity_nav’, 15 );`September 6, 2010 at 2:28 pm #91660PapaTangoMemberSorry to say, a lot of us on the end publishing equation are not programmers… I used EngineSite to find the string, but have no clue as to where the parent ID for the menu item is to be found. even then, is it simply a matter of entering that ID into the argument?
‘/**
* bp_core_remove_nav_item()
*
* Removes a navigation item from the sub navigation array used in BuddyPress themes.
*
* @package BuddyPress Core
* @param $parent_id The id of the parent navigation item.
* @param $slug The slug of the sub navigation item.
*/
function bp_core_remove_nav_item( $parent_id ) {
global $bp;/* Unset subnav items for this nav item */
if ( is_array( $bp->bp_options_nav[$parent_id] ) ) {
foreach( (array)$bp->bp_options_nav[$parent_id] as $subnav_item ) {
bp_core_remove_subnav_item( $parent_id, $subnav_item );
}
}unset( $bp->bp_nav[$parent_id] );’
Thanks!
P
September 5, 2010 at 10:21 pm #91626Boone GorgesKeymasterRoger’s right – bp_core_remove_nav_item() is the function you want. See bp-core.php to see how that function works.
Also, please don’t bump your question more than once every few days. This board is not so well-trafficked that you can expect an answer to every question within a few hours, especially on the weekend.
September 5, 2010 at 10:10 pm #91625Roger CoathupParticipantYou could look at adding a filter on: bp_get_displayed_user_nav_ . $user_nav_item to remove the blog menu.
Or, take a look at these functions in bp-core.php:
function bp_core_new_nav_item( $args = ” )
function bp_core_remove_nav_item( $parent_id )June 24, 2010 at 6:50 pm #82613Boone GorgesKeymasterTry putting this in your plugins/bp-custom.php file:
function remove_blogs_nav_for_zero() {
global $bp;if ( bp_blogs_total_blogs_for_user() == 0 )
bp_core_remove_nav_item( $bp->blogs->slug );
}
add_action( 'bp_setup_nav', 'remove_blogs_nav_for_zero', 11 );
March 25, 2010 at 8:17 pm #70152In reply to: Cleaning Tabs in Profile-View
Andy PeatlingKeymasterDon’t dig around in the array, use
bp_core_remove_nav_item() and bp_core_remove_subnav_item()
-
AuthorSearch Results