Search Results for 'bp_core_remove_nav_item'
-
AuthorSearch Results
-
June 6, 2017 at 9:12 am #266298
tisor
ParticipantI had a site plugin, disabling the menu options for WordPress. Using this code:
bp_core_remove_nav_item( ‘settings’ );
This was generating the 404. Removed it, all worked.
February 26, 2017 at 6:33 pm #264188In reply to: Hiding Menu by User Role
083n
ParticipantI solved it with my own effort.
function bp_remove_nav_item() { $current_user = wp_get_current_user(); $role_name = $current_user->roles[0]; if($role_name==='administrator'){ bp_core_remove_nav_item( 'buddyblog' ); } } add_action( 'wp', 'bp_remove_nav_item' );This code delete blog menu for administrator.
January 11, 2017 at 2:45 pm #262747In reply to: Get rid of Activity Tab on Member Profile
Paul Barthmaier (pbrocks)
ParticipantI think you’ll want something like this:
add_action( 'bp_actions', 'remove_members_activity_tab', 5 ); function remove_members_activity_tab() { global $bp; bp_core_remove_nav_item( 'activity' ); }which should remove the tab, but it’ll also remove the whole navigation if Activity is set as the default. To make sure that doesn’t happen, add this:
add_action( 'bp_setup_nav', 'change_settings_subnav', 5 ); function change_settings_subnav() { $args = array( 'parent_slug' => 'settings', 'screen_function' => 'bp_core_screen_notification_settings', 'subnav_slug' => 'notifications' ); bp_core_new_nav_default( $args ); }January 2, 2017 at 8:10 am #262492In reply to: Is possible hide some tabs in profiles??
Laura N
ParticipantIf you add in functions.php this code
function remove_nav_items() { bp_core_remove_nav_item( 'forums' ); } add_action( 'bp_setup_nav', 'remove_nav_items',301);You can remove the forum options in horizontal menu, but in vertical menu (profile user) no.
I am trying it with css, but it is impossible
li#wp-admin-bar-my-account-social-forums.menupop {display:none !important;}December 29, 2016 at 6:21 pm #262457In reply to: Is possible hide some tabs in profiles??
Laura N
ParticipantO_o it is very difficult for me, but “activity” was just an example, If I want to remove a no default option? For example “docs”.
In my buddypress show “docs” because I installed BuddyPress Docs plugin.
function bpfr_remove_nav_tabs() { bp_core_remove_nav_item( 'docs' ); // and so on for each item you want to remove } add_action( 'bp_setup_nav', 'bpfr_remove_nav_tabs', 15 );December 29, 2016 at 3:51 pm #262447In reply to: Is possible hide some tabs in profiles??
Laura N
ParticipantYes, Itยดs true, I am sorry
I have created the bp-custom.php inside plugin folder.
then I have added this code between php
function bpfr_remove_nav_tabs() { bp_core_remove_nav_item( 'activity' ); // and so on for each item you want to remove } add_action( 'bp_setup_nav', 'bpfr_remove_nav_tabs', 15 );But the activity options is visible ๐
November 22, 2016 at 11:26 pm #261275In reply to: Please help me remove the Friends tab
shanebp
ModeratorDid you try:
function cs_remove_friends_nav() { bp_core_remove_nav_item( bp_friends_slug() ); } add_action( 'bp_setup_nav', 'cs_remove_friends_nav' );September 18, 2016 at 8:29 pm #258900danbp
ParticipantHere “the best guarded secret” finally revealed !
But it’s not a secret, is part of Codex and a multi handled topic subject on this forum.What we want to do: remove access possibility.
Where: on BuddyBar navigation menu (the one below the profile header).
Specifics: make the activity and forum tabs only visible to the logged in user.NOTE: The activity tab is shown by default when you visit a profile.
As we are going to hide/remove this tab to visitors, we need to define as first another default tab. If we won’t do that, the visitor will get a Page not found error. Which is not exactly the case here, the page exist but the visitor can’t access it.
Let’s define arbitrary Profile as the new default tab. You can of course define what ever other existing tab on your BuddyBar as default.
Add this line to bp-custom.php
define( 'BP_DEFAULT_COMPONENT','profile' );Now the mega “open secret” !
The folowing snippet contains almost any BP menu items you can have on a BuddyBar, and includes also the Forum item, in case you use bbPress.
You can remove or comment out those you don’t want to use.
Note also that it is only an example – you have to play with it to fit your need. But at least you have the right syntax to use.
Note also that some profile menu items are user only, such as message or notice. In other words, these are always private.This function goes preferably to bp-custom.php
function bpfr_hide_tabs() { global $bp; /** * class_exists() & bp_is_active are recommanded to avoid problems during updates * or when Component is deactivated */ if( class_exists( 'bbPress' ) || bp_is_active ( 'groups' ) ) : /** here we fix the conditions. * Are we on a profile page ? | is user site admin ? | is user logged in ? */ if ( bp_is_user() && !is_super_admin() && !is_user_logged_in() ) { /* and here we remove our stuff ! */ bp_core_remove_nav_item( 'activity' ); bp_core_remove_nav_item( 'friends' ); bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'forums' ); } endif; } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );Some other hints for privacy
if you want to allow only the profile owner to view some tabs, replace
!is_user_logged_inby!bp_is_my_profile()– this scenario doesn’t need a check for logged in users as it is made bybp_is_my_profile.If you want only to make a profile private, read here.
If you want to remove a sub-nav item (ie. View on Profile), you use something like:
bp_core_remove_subnav_item( 'profile', 'view' );Many other possibilities for navigation are also available, including for groups. Several examples are given on Codex, here.
And if not enough, RTFM and search the forum ! ๐
Have fun !
September 14, 2016 at 3:32 pm #258720In reply to: Eliminate buddypress pages
SrGato29
ParticipantHi there ,
Thanks for your response, I tried your function, but without success, I try this function which I found on internet
function my_remove_em_nav() { global $bp; bp_core_remove_nav_item( 'settings' ); } add_action( 'bp_init', 'my_remove_em_nav' );Thanks
September 13, 2016 at 10:44 pm #258702In reply to: Eliminate buddypress pages
modemlooper
ModeratorIf you remove settings tab it auto removes all child pages.
function w24dr_remove_settings_nav() { bp_core_remove_nav_item( bp_settings_slug() ); } add_action( 'bp_setup_nav', 'w24dr_remove_settings_nav' );September 6, 2016 at 11:40 am #258440In reply to: 404 error when “suppressing” the Activity tab
danbp
ParticipantPerhaps check for quotes ? You use
โinstead'The snippet will work by changing them.
define( 'BP_DEFAULT_COMPONENT', 'profile' ); // Triem nova pestanya per defecte function bphelp_remove_activity_from_profile(){ bp_core_remove_nav_item('activity'); } add_action('bp_activity_setup_nav','bphelp_remove_activity_from_profile');September 3, 2016 at 5:01 pm #258342In reply to: [Resolved] Member Menu Alterations
Fantacular Designs
ParticipantMy brilliant husband is my coder… He figured out how to define the default component, and saved the day. I hope this helps others.
define( 'BP_DEFAULT_COMPONENT', 'profile' ); function bpfr_hide_tabs() { global $bp; if ( bp_is_user() && !is_super_admin() ) { bp_core_remove_nav_item( 'activity'); bp_core_remove_nav_item( 'notifications'); bp_core_remove_nav_item( 'messages' ); bp_core_remove_nav_item( 'forums' ); bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'settings' ); } } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );September 1, 2016 at 1:16 am #258234In reply to: [Resolved] Member Menu Alterations
Fantacular Designs
ParticipantI also attempted to add them individually…
function bpfr_hide_tabs() { global $bp; if ( bp_is_user() && !is_super_admin() ) { bp_core_remove_nav_item( 'activity' ); bp_core_remove_nav_item( 'notifications' ); bp_core_remove_nav_item( 'messages' ); bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'forums' ); bp_core_remove_nav_item( 'settings' ); } } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );I’ve noticed some changes require us to repeat ourselves, while others allow us to list changes within one line of code. Haven’t deciphered this anomaly just yet.
September 1, 2016 at 1:02 am #258232In reply to: [Resolved] Member Menu Alterations
Fantacular Designs
ParticipantI placed the following code in the bp-custom.php which was found under the wp-content -> plugins.
function bpfr_hide_tabs() { global $bp; if ( bp_is_user() && !is_super_admin() ) { bp_core_remove_nav_item( 'notifications', 'activity', 'groups', 'messages', 'forums', 'settings'); } } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );It breaks my site, shuts it down. From what I’ve read, I am supposed to specify what tab is open when opening a profile. Otherwise, browsers don’t know what to display since default is “Activity” and I’m removing it… Can someone please tell me where I went wrong? I appreciate the help!
August 26, 2016 at 6:57 pm #258094In reply to: New Privacy Plugin
danbp
Participanthi @fencer04,
thank for sharing your work. Well done, but it needs some revision (sorry).
At his activation on 2 test sites (one with 4.5.3/bp 2.6.1, other 4.6/bp2.6.2) i got a notice.
Array to string conversion inbuddypress/bp-core/classes/class-bp-core-nav.php on line 279fromsbpp04_privacy_check( ) ..\plugin.php:525 sbpp04_privacy_redirect( ) ..\buddypress-profile-privacy.php:176 bp_core_remove_nav_item( ) ..\buddypress-profile-privacy.php:184 BP_Core_Nav->delete_nav( ) ..\bp-core-buddybar.php:798Another point concerning UI/UX is the Private button appearing on buddybar.
On this tab, a default message says Friends Only.
USERNAME has chosen to limit profile access to friends only.
That’s wrong! Because this appear on each profile, even if the owner hasn’t setup anything about his profile privacy.So far i understand its fonctionality, this plugin let each member decide to show or not his whole profile page to friends or members only or to everyone (bp default).
– imo this tab should show “This profile is private” to anybody who is concerned by a privacy setting and should not appear at all if “Everyone” is set.
– the original BP Add as friend button on profile header or members directory is still there. This means that there is no need to go on Private tab to ask forfriendship.
This is a little confusing !If the plugin is to extend profile settings, it should appear in profile settings only. And as it doesn’t superseed BP, there is no real reason to give him an extra tab on buddybar outside of the settings scope. A template notice could be enough to tell visitors what’s going on on such a profile.
Just my 2 cents.
August 7, 2016 at 9:28 pm #257327In reply to: [Resolved] the right way to remove nav items
danbp
ParticipantHi,
two snippets to remove profile and group items.
function bpex_hide_profile_menu_tabs() { if( bp_is_active( 'xprofile' ) ) : if ( bp_is_user() && !is_super_admin() && !bp_is_my_profile() ) { // BP's profile main menu items. Comment those to show. // bp_core_remove_nav_item( 'activity' ); bp_core_remove_nav_item( 'profile' ); bp_core_remove_nav_item( 'friends' ); bp_core_remove_nav_item( 'groups' ); // exist only if you use bbPress bp_core_remove_nav_item( 'forums' ); // BP's profile main menu items. Comment those to show. // bp_core_remove_subnav_item( 'activity', 'personnal' ); bp_core_remove_subnav_item( 'activity', 'mentions' ); bp_core_remove_subnav_item( 'activity', 'favorites' ); bp_core_remove_subnav_item( 'activity', 'friends' ); bp_core_remove_subnav_item( 'activity', 'groups' ); } endif; } add_action( 'bp_setup_nav', 'bpex_hide_profile_menu_tabs', 15 ); function bpex_remove_group_tabs() { if ( ! bp_is_group() ) { return; } $slug = bp_get_current_group_slug(); // hide items to all users except site admin if ( !is_super_admin() ) { // bp_core_remove_subnav_item( $slug, 'members' ); bp_core_remove_subnav_item( $slug, 'send-invites' ); // bp_core_remove_subnav_item( $slug, 'admin' ); // bp_core_remove_subnav_item( $slug, 'forum' ); } } add_action( 'bp_actions', 'bpex_remove_group_tabs' );July 10, 2016 at 12:09 pm #256411In reply to: How to hide profile menu items from other users
danbp
ParticipantAdd this snippet to bp-custom.php and give it a try.
function bpex_hide_profile_menu_tabs() { if( bp_is_active( 'xprofile' ) ) : if ( bp_is_user() && !is_super_admin() && !bp_is_my_profile() ) { // BP's profile main menu items. Comment those to show. // bp_core_remove_nav_item( 'activity' ); bp_core_remove_nav_item( 'profile' ); bp_core_remove_nav_item( 'friends' ); bp_core_remove_nav_item( 'groups' ); // exist only if you use bbPress bp_core_remove_nav_item( 'forums' ); // BP's profile main menu items. Comment those to show. // bp_core_remove_subnav_item( 'activity', 'personnal' ); bp_core_remove_subnav_item( 'activity', 'mentions' ); bp_core_remove_subnav_item( 'activity', 'favorites' ); bp_core_remove_subnav_item( 'activity', 'friends' ); bp_core_remove_subnav_item( 'activity', 'groups' ); } endif; } add_action( 'bp_setup_nav', 'bpex_hide_profile_menu_tabs', 15 );July 6, 2016 at 10:48 am #256031In reply to: [Resolved] Removing nav & subnav item in groups
javierllinas
ParticipantHello,
Working perfect for subnav items, but not for main nav in my case. Can’t get this to work:
function my_remove_group_tab() { bp_core_remove_nav_item( 'send-invites', 'groups' ); } add_action( 'bp_actions', 'my_remove_group_tab', 9 );I don’t now what I’m missing here.
Appreciate any help.
June 27, 2016 at 9:00 am #255297In reply to: [Resolved] How to remove tabs from group admin nav
javierllinas
ParticipantThanks, @danbp!
You are right: only the fallback was working
bp_core_redirect( bp_get_group_permalink( groups_get_current_group() ) );.
Adding the $component (which defaults to ‘members’) is the key:bp_core_remove_subnav_item( $parent_nav_slug, $tab, 'groups' );These functions are located in ‘bp-core/bp-core-buddybar.php’.
I’d also want to get rid of ‘send-invites’ in group primary navigation, but this is not working for me:bp_core_remove_nav_item( 'send-invites', 'groups' );Thank you,
JavierJune 24, 2016 at 7:03 am #255125sharmavishal
Participanttry this and let me know if it works in bp 2.6 for u or not
function my_remove_em_nav() { global $bp; bp_core_remove_nav_item( 'events' ); bp_core_remove_subnav_item( 'settings', 'profile' ); } add_action( 'bp_init', 'my_remove_em_nav' );June 16, 2016 at 6:32 pm #254694In reply to: Remove nav items and hide header
danbp
Participantyou can use a function within bp-custom.php
Something like:function bpfr_remove_nav_tabs() { bp_core_remove_nav_item( 'messages' ); // and so on for each item you want to remove } add_action( 'bp_setup_nav', 'bpfr_remove_nav_tabs', 15 );References
nav-item
http://hookr.io/plugins/buddypress/2.4.3/functions/bp_core_remove_nav_item/
sub-nav-itemFor the header thing, see template file and made your modification from within a child-theme.
– profile pic and username: bp-templates/bp-legacy/buddypress/members/single/member-header.php
– cover image: bp-templates/bp-legacy/buddypress/members/single/profile.phpJune 4, 2016 at 7:30 pm #254137danbp
ParticipantGive this a try: (add to bp-custom.php) 1) & 2):
function bpfr_hide_tabs() { global $bp; if ( bp_is_user() && !is_super_admin() ) { bp_core_remove_nav_item( 'notifications' ); bp_core_remove_subnav_item( 'messages', 'compose' ); } } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );3) With BP and xprofile component activated, a user doesn’t need access to WP dashboard. He can change his profile credentials from front-end.
Easiest way would be to use this plugin.Retrieving them the possibility to change their email is anyway not a good idea. What happen when a user changed from yahoo to gmail, but can’t login because he lost his password ? Where will the new pwd be sent ?
Perhaps you have also to remove this from the BP usermenu on toolbar ?
Here’s how you can do it:function admin_bar_remove_this(){ global $wp_admin_bar; $wp_admin_bar->remove_node('my-account-messages-compose'); } add_action('wp_before_admin_bar_render','admin_bar_remove_this');December 10, 2015 at 8:56 pm #247637In reply to: Buddypress privacy for tabs
shanebp
ModeratorFor standard BP profile tabs, try:
function zhubr_remove_profile_nav_item( $nav ) { if ( ! bp_is_my_profile() ) $nav = ''; return $nav; } add_filter('bp_get_displayed_user_nav_notifications', 'zhubr_remove_profile_nav_item', 20, 1 ); add_filter('bp_get_displayed_user_nav_groups', 'zhubr_remove_profile_nav_item', 20, 1 ); // add additional calls for other tabsTo remove custom tabs, try:
function zhubr_remove_custom_profile_tab() { if ( bp_is_user() && ! bp_is_my_profile() ) bp_core_remove_nav_item( 'events' ); } add_action( 'bp_ready', 'zhubr_remove_custom_profile_tab', 25 );November 10, 2015 at 9:59 am #246529In reply to: hiding groups and forums from members page
danbp
ParticipantTry
function bpfr_hide_tabs() { global $bp; /** * class_exists() & bp_is_active are recommanded to avoid problems during updates * or when Component is deactivated */ if( class_exists( 'bbPress' ) || bp_is_active ( 'groups' ) ) : if ( bp_is_user() && !is_super_admin() && !bp_is_my_profile() ) { bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'forums' ); bp_core_remove_subnav_item( 'activity', 'groups' ); } endif; } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );November 10, 2015 at 9:58 am #246528In reply to: Want to add new tab in buddypress profile page.
danbp
Participanttry this:
function bpfr_hide_tabs() { global $bp; /** * class_exists() & bp_is_active are recommanded to avoid problems during updates * or when Component is deactivated */ if( class_exists( 'bbPress' ) || bp_is_active ( 'groups' ) ) : if ( bp_is_user() && !is_super_admin() && !bp_is_my_profile() ) { bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'forums' ); bp_core_remove_subnav_item( 'activity', 'groups' ); } endif; } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 ); -
AuthorSearch Results