Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,033
- How-to & Troubleshooting
- 129,674
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
We had a similar issue and chose a soft solution with CSS so we do not have to worry when upgrading.
We placed this in the site-wide.css:
#wp-admin-bar #bp-admin-blogs, #bp-adminbar-blogs-menu {
display:none !important;
}
#my-blogs {
display:none !important;
}
So the functions technically remain but are just not displayed. Works for us.