Support

Account

Home Forums ACF PRO Pages Do Not Save Reply To: Pages Do Not Save

  • The errors indicate that there is a problem with the theme and how it’s loading widgets. You need to correct that.

    PHP display of errors can be controlled several ways, so it would be hard for me to tell you exactly how to turn it off.

    There may be a php statement somewhere that looks something like

    
    ini_set('display_erros', 1);
    

    there could be a statement in you’re htaccess file that looks something like this

    
    php_value display_errors On
    

    display_errors could be on by default on your host

    errors are displayed if you have this statement anywhere

    
    define('WP_DEBUG_DISPLAY', true);
    

    I’m sure there are others I missed, the theme could be turning it on, and others.

    The problem could be cause by a plugin. Disable plugins and switch to a default WP theme and see what clears up the problem. Something is doing something in a way that has been deprecated by WP, do you have an old plugin installed that has not been updated in a while? Has the theme been updated recently?