• I am running Buddypress on all the subsites in my network and they are all being used as individual social networks. I’m using a plugin called Buddypress Multi Network by BuddyDev http://buddydev.com/plugins/buddypress-multi-network/

    Right now, when I am in the dashboard of a subsite I only see “Group Docs” as an admin option when logged in as Super Admin. I would like my subsite Administrators to be able to access the Group Docs but currently that is not visible from the Subsite admin dashboard when logged in as a Subsite Administrator.

    Any suggestions?

    https://ww.wp.xz.cn/plugins/buddypress-docs/

Viewing 1 replies (of 1 total)
  • Thread Starter jono_39

    (@jono_39)

    I’ve tested this code on my staging server placed in the theme’s functions.php folder. This fixes the issue. Any possibility of you updating the plugin so I’m not tied to any particular themes ?

    function hubbli_bp_docs_show_cpt_ui( $show_ui ) {
      $user = wp_get_current_user();
      if ( $user->has_cap( 'manage_options' ) ) {
        return true;
      }
      return $show_ui;
    }
    add_filter( 'bp_docs_show_cpt_ui', 'hubbli_bp_docs_show_cpt_ui', 999, 1 );
Viewing 1 replies (of 1 total)

The topic ‘Multi site Admin Menu’ is closed to new replies.