Skip to:
Content
Pages
Categories
Search
Top
Bottom
  • @mayawi Using the following code snippet, you can completely conceal the General tab in the settings.

    add_action( 'bp_setup_nav', 'wbcom_custom_set_default_sub_nav', 20 );
    function wbcom_custom_set_default_sub_nav() {
    //Remove the general tab
    bp_core_remove_subnav_item( bp_get_settings_slug(), 'general', 'members' );

    //Set the Email tab as…[Read more]

Skip to toolbar