• I randomly keep getting error

    Fatal error: Cannot use object of type WP_Error as array in /class-simple-instagram.php on line 114

    Any ideas on what is causing this or how to fix it? When this happens it’s causing the bottom portion of my site and side bar not to load so I need to fix this desperately.

    https://wordpress.org/plugins/simple-instagram/

Viewing 1 replies (of 1 total)
  • Modify line 113 in /wp-content/plugins/simple-instagram/inc/class-simple-instagram.php

    From:
    $request = wp_remote_get( $url );

    To:
    $request = (array) wp_remote_get( $url );

    Hopefully the developers can add this fix directly to the plugin so that it doesn’t get overwritten with an update.

Viewing 1 replies (of 1 total)
  • The topic ‘Fatal error: Cannot use object of type WP_Error’ is closed to new replies.