• Using latest versions of Jetpack and Buddyboss for buddypress. I have a plugin from them that allows front end publishing that works great. However, when I activate publicize the editor disappears. They’ve attempted to remedy this in previous iterations but was wondering if you had a fix or work around.

Viewing 1 replies (of 1 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    I’m afraid I’m not familiar enough with Buddyboss to be able to really help.

    However, if the editor disappears when enabling Publicize, your errors should be able to tell us more about the conflict, and maybe how it can be fixed. Could you add the following to your site’s wp-config.php file?

    
    define( 'WP_DEBUG', true );
    
    if ( WP_DEBUG ) {
    
            @error_reporting( E_ALL );
            @ini_set( 'log_errors', true );
            @ini_set( 'log_errors_max_len', '0' );
    
            define( 'WP_DEBUG_LOG', true );
            define( 'WP_DEBUG_DISPLAY', false );
            define( 'CONCATENATE_SCRIPTS', false );
            define( 'SAVEQUERIES', true );
    
    }
    

    Your wp-config.php file may already include a line that says “define(‘WP_DEBUG’, false);”. You can remove it, and replace it by the code above.

    Once you’ve done so, try to reproduce the issue, and then check the wp-content/debug.log file for errors. You can paste the results here. You can then replace define('WP_DEBUG', true); by define('WP_DEBUG', false); in the code above.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Publicize not working with BuddyBoss Plugin’ is closed to new replies.