Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

Problem with removing Home in group (6 posts)

Started 7 months, 3 weeks ago by: lukybest

  • Profile picture of lukybest lukybest said 7 months, 3 weeks ago:

    Please help me, where can I remove Home tab from buddypress group page , i want to have only Admin, Members and Send invites tabs. Thanks.

  • Profile picture of Svenl77 Svenl77 said 7 months, 3 weeks ago:

    try this:
    bp_core_remove_subnav_item( bp_get_current_group_slug(), ‘home’ );

  • Profile picture of lukybest lukybest said 7 months, 3 weeks ago:

    Sorry , but what have i do whit this ?

  • Profile picture of Svenl77 Svenl77 said 7 months, 3 weeks ago:

    add it into a function in your functions.php and hook this function into bp_setup_nav

    read more here http://bpdevel.wordpress.com/tag/bp_core_remove_subnav_item/

    hope that helps you

  • Profile picture of lukybest lukybest said 7 months, 3 weeks ago:

    How hook I this function into bp_setup_nav?

  • Profile picture of Svenl77 Svenl77 said 7 months, 3 weeks ago:

    add 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’ );