Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Signatures (BBPress & BuddyPress)


r-a-y
Keymaster

@r-a-y

I’m using bpGroups and first of all you should follow the instructions properly.

Make sure your files are in the right directories.

/wp-content/mu-plugins/oci_bp_group_forums.php

/YOUR BBPRESS INSTALL DIRECTORY/my-plugins/oci_bb_group_forums.php

Also, because you’re using deep integration, you’ll need to make the following changes:

In oci_bp_group_forums.php, around line 30 change:

require_once(ABSPATH . WPINC . '/class-IXR.php');

to this:

if (!defined(BBDB_NAME))
require_once(ABSPATH . WPINC . '/class-IXR.php');

In oci_bb_group_forums.php, around line 30 change:

require_once( BACKPRESS_PATH . '/class.ixr.php' );

to this:

if (defined(BACKPRESS_PATH))
require_once( BACKPRESS_PATH . '/class.ixr.php' );

Skip to toolbar