Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Accessing memebrs, blogs and groups link frm a sub-blog?


Tim Moore
Participant

@nullcrash

Cyclzone,

You need to edit core BP files to accomplish this. I’m not sure how this will effect overall BP performance, though.

First thing to do is locate the file “bp-core-catchuri.php” in /buddypress/bp-core/. Open it up.

You’ll want to comment out lines 36 and 37 which look like:

if ( BP_ROOT_BLOG != (int) $current_blog->blog_id )
return false;

Next, you’ll want to change line 92 to read like the following:

if ( ($bp_uri[0] == BP_MEMBERS_SLUG) || ($bp_uri[1] == BP_MEMBERS_SLUG) || in_array( 'bp-core-ajax-handler.php', $bp_uri ) ) {

That should do it.

Skip to toolbar