• Resolved gwertul

    (@gwertul)


    Hey!
    I’m currently testing PHP 8.1 on WordPress 6.0.1. I’m using the Nextgen Widget.
    I get this error:

    Undefined array key "sidebar-siteorigin_panels-post-190" in /home_pr5/i/n/mysite.com/htdocs/dev.mysite.com/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/widget/package.module.widget.php on line
    Undefined array key "before_widget" in /home_pr5/i/n/mysite.com/htdocs/dev.mysite.com/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/widget/package.module.widget.php on line 96

    Do you have any idea how to fix that?
    Thank you 🙂

Viewing 1 replies (of 1 total)
  • Plugin Contributor Imagely

    (@imagely)

    Seems like a non-critical warning so feel free to disable the error reporting by editing your site’swp-config.php file by FTP and replace:

    define('WP_DEBUG', false);

    with these:

    
    ini_set('display_errors','Off');
    define('WP_DEBUG', false);
    define('WP_DEBUG_DISPLAY', false);
    
Viewing 1 replies (of 1 total)

The topic ‘PHP 8.1: Undefined array key’ is closed to new replies.