Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #23437

    Good day. Been chasing down a conflict between BoldGrid and the Memberpress plugin. After working with Memberpress on it for the past week, looks like it is on the BoldGrid side.

    When I have BoldGrid and Memberpress activated, my whole admin panel runs much slower. On top of that, I cannot add sections to a page or manipulate built sections. When I deactivate either BoldGrid or Memberpress, admin panel is much faster and I can manipulate sections.

    Thoughts? Appreciate your help.

    #23440
    JohnPaul B
    Member

    Hello SoulStealer6,

    Thank you for contacting us about Memberpress conflict issues. Often, there is an error message being suppressed. I recommend enabling debug mode in WordPress by adding the following lines to the bottom of your wp-config.php file:

    define( ‘WP_DEBUG’, true );
    define( ‘SCRIPT_DEBUG’, true );

    The first line will cause WordPress to display any errors caused by PHP functions that are built into WordPress. The second line will display any errors for  built-in JavaScript and CSS. This should provide additional clues into what is happening.

    You can also try disabling any other 3rd party plugins you may be running, as they can often interfere with each other.

    Thank you,

    John-Paul

    #23439

    Thank you John-Paul. Good idea. Where do I then find the debug log?

    #23438
    JohnPaul B
    Member

    The two lines I provided will only display the errors, you can log them by adding the following to your wp-config.php file:

     

    define( ‘WP_DEBUG’, true );
    define( ‘WP_DEBUG_LOG’, true );

     

    This will log all errors to a debug.log file in the /wp-content folder. All this information is from the official WordPress Codex on “Debugging in WordPress” here: https://codex.wordpress.org/Debugging_in_WordPress
    Thank you,

    John-Paul

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Conflict with Memberpress?’ is closed to new replies.