Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

  • bluesweet
    Participant

    @bluesweet

    Found my solution –
    Activity Plus Reloaded for BuddyPress plugin


    bluesweet
    Participant

    @bluesweet

    Thank you very much. This works!!


    bluesweet
    Participant

    @bluesweet

    Found it…
    In case amyone is looking here is the path

    Wp_content
    Plugins
    Buddypress-docs
    Includes
    Integration -groups -php
    Line – 1245


    bluesweet
    Participant

    @bluesweet

    ONE MORE THING….
    I placed this code in the Code Snippets plugin.
    I love this plugin!!!


    bluesweet
    Participant

    @bluesweet

    After making the changes that I wanted
    Change “activity tab” to “Social Wall”
    Change “docs” to “Official Docs”
    Hope this helps ….

    // Setup the navigation
    // Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
    // http://themekraft.com/customize-profile-menus-in-buddypress/
    function my_setup_nav() {
    global $bp;

    // Change name of menu item
    $bp->bp_nav[‘docs’][‘name’] = ‘Official Docs’;
    // Change name of menu item
    $bp->bp_nav[‘activity’][‘name’] = ‘Social Wall’;
    }

    add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );


    bluesweet
    Participant

    @bluesweet

    i found this snippet and it works great …

    // Setup the navigation
    // Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
    // http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
    function my_setup_nav() {
    global $bp;

    // Change the order of menu items
    $bp->bp_nav[‘messages’][‘position’] = 100;

    // Remove a menu item
    $bp->bp_nav[‘conversations’] = false;

    // Change name of menu item
    $bp->bp_nav[‘communities’][‘name’] = ‘My Conversations’;
    }

    add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );


    bluesweet
    Participant

    @bluesweet

    Thank you very much!!! You are the best.


    bluesweet
    Participant

    @bluesweet

    Thank you great info.


    bluesweet
    Participant

    @bluesweet

    Thanks very helpful


    bluesweet
    Participant

    @bluesweet

    I found this snippet that will remove certain tabs but it also removes the tab from the drop-down menu too. How can I just hide tabs that I don’t want the users to see on the profile page nav bar? I still want them to be seen in the dropdown menu.

    /**
    * Removing the friends tab
    */
    function mb_profile_menu_tabs(){

    global $bp;

    bp_core_remove_nav_item(‘friends’);

    }
    add_action(‘bp_setup_nav’, ‘mb_profile_menu_tabs’, 201);
    /**

    * Removing the friends tab
    */


    bluesweet
    Participant

    @bluesweet

    I found the Recorder Tabs plugin. This definitely helps with the order of tabs in the profile page but I still don’t know how to remove the unwanted tabs. I just want to remove them from this bar and not other menus.
    This is the order of my nav bar
    Media – Articles – Docs – Activity – Profile – Friends – Group – Forums
    I want the Activity – Profile – Friends – Groups – Forums to disappear but still be in the drop-down menu.
    Can anyone help me ???

Viewing 11 replies - 1 through 11 (of 11 total)
Skip to toolbar