• Hi Team,

    we get this PHP 8.5 warning

    [18-Aug-2026 06:33:50 UTC] PHP Warning:  Trying to access array offset on true in .../wp-content/plugins/siteorigin-panels/inc/settings.php on line 71

    on this code

    ...
    $theme_settings = get_theme_support( 'siteorigin-panels' );

    if ( ! empty( $theme_settings ) ) {
    $theme_settings = $theme_settings[0];
    } else {
    $theme_settings = array();
    }
    ...

    Maybe it should be something like

    if ( is_array( $theme_settings ) && ! empty( $theme_settings ) ) { ...

    (WP-Version: 7.0.4 / Plugin-Version: 2.36.0)

    Best regards

You must be logged in to reply to this topic.