Forum Replies Created

Viewing 1 replies (of 1 total)
  • Actually… the correct answer is within your own plugin file titled “wr-pagebuilder.php”… the setting below is over-riding the server’s own error reporting which is causing the error. My question is why are you over-riding this for no real reason. Please remove the code as it’s not needed and screwing a lot of stuff up in the process. To fix the issue, just comment the below out. Just remember that until this is fixed by the plug-in authors that you’ll have to do this “fix” each time they update their code.

    <?php
    /**
    * Plugin Name: WR PageBuilder
    * Plugin URI: http://www.woorockets.com
    * Description: Awesome content builder for WordPress websites
    * Version: 2.4.3
    * Author: WooRockets Team <support@www.woorockets.com>
    * Author URI: http://www.wordpress.org/plugins/wr-pagebuilder
    * License: GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
    */

    // Set custom error reporting level
    error_reporting( E_ALL ^ E_NOTICE ); <<<<<<COMMENT THIS LINE OUT TO FIX!!!!

Viewing 1 replies (of 1 total)