• Resolved drbipes

    (@drbipes)


    Issue when exporting with BuddyBoss installed, had to update the path in buddypress.php to reflect a BuddyBoss installation. I am not sure if this can be addressed in future releases.

    For example: Line 15: /buddypress/bp-xprofile/classes/class-bp-xprofile-group.php
    needs to be changed to /buddyboss-platform/bp-xprofile/classes/class-bp-xprofile-group.php in order for exporting to work.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Javier Carazo

    (@carazo)

    @drbipes,

    Thanks for your message. I have just prepared a conditional to make it works.

    Could you update to 1.19.1.5 and check?

    Thread Starter drbipes

    (@drbipes)

    I updated and I get the error message again. “Error thrown in the server, we cannot continue. Please check console to see full details about the error.”

    I will need to manually change the file again

    Thread Starter drbipes

    (@drbipes)

    It works after changing buddypress references to buddyboss-platform

    Plugin Author Javier Carazo

    (@carazo)

    I included this check:

    if( is_plugin_active( 'buddypress/bp-loader.php' ) )
       require_once( WP_PLUGIN_DIR . "/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php" );
    elseif( is_plugin_active( 'buddyboss-platform/bp-loader.php' ) )
       require_once( WP_PLUGIN_DIR . "/buddyboss-platform/bp-xprofile/classes/class-bp-xprofile-group.php" );

    I am not a BuddyBoss user. Could you tell me which error it was thrown?

    • This reply was modified 2 years, 3 months ago by Javier Carazo.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘BuddyBoss Compatability’ is closed to new replies.