BuddyBoss Home – Web Support Forums Themes Boss. theme Cannot delete subnav items in member profile

Viewing 2 posts - 1 through 2 (of 2 total)
  • Question

    #37899
    @sushant_priyadarshi

    Hello, in Boss, I need to delete all subtabs from Member Profile ->Activity tab (picture shown in attachment). Following code in bp_custom.php works for all subtabs except first one – Personal. Any idea on how to remove first tab as well?

    function remove_activity_subnavs(){
    bp_core_remove_subnav_item( ‘activity’, ‘personal’ );
    bp_core_remove_subnav_item( ‘activity’, ‘mentions’ );
    bp_core_remove_subnav_item( ‘activity’, ‘favorites’ );
    bp_core_remove_subnav_item( ‘activity’, ‘groups’ );
    }
    add_action( ‘bp_setup_nav’, ‘remove_activity_subnavs’, 200000 );

    Thanks.

    Answers

    #37910

    Anonymous
    @

    hi @sushant_priyadarshi there is just-me parameter for activity but if you will remove it you will need ADD bp_core_new_subnav_item for activity with some name with their screens.

    bp_core_remove_subnav_item($bp->activity->slug, ‘just-me’);

    Regards
    Varun Dubey

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘Cannot delete subnav items in member profile’ is closed to new replies.