Title: okito's Replies | WordPress.org

---

# okito

  [  ](https://wordpress.org/support/users/okito/)

 *   [Profile](https://wordpress.org/support/users/okito/)
 *   [Topics Started](https://wordpress.org/support/users/okito/topics/)
 *   [Replies Created](https://wordpress.org/support/users/okito/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/okito/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/okito/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/okito/engagements/)
 *   [Favorites](https://wordpress.org/support/users/okito/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] What Does This Error Mean ?](https://wordpress.org/support/topic/what-does-this-error-mean-8/)
 *  [okito](https://wordpress.org/support/users/okito/)
 * (@okito)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/what-does-this-error-mean-8/#post-3915534)
 * I have same problem with you. I have no idea what to do, except modify that file.
   
   change :
 * > if ( is_array( $cached_list ) && !empty( $cached_list ) ) {
 * to :
 * > if ( isset( $cached_list ) && is_array( $cached_list ) && !empty( $cached_list)){
 * and
    change :
 * > if ( is_array( $expired_list ) && !empty( $expired_list ) ) {
 * to :
 * > if ( isset( $expired_list ) && is_array( $expired_list ) && !empty( $expired_list)){
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Yoast WordPress SEO] Removing this one meta tag](https://wordpress.org/support/topic/plugin-yoast-wordpress-seo-removing-this-one-meta-tag/)
 *  [okito](https://wordpress.org/support/users/okito/)
 * (@okito)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/plugin-yoast-wordpress-seo-removing-this-one-meta-tag/#post-3883523)
 * Try this :
 *     ```
       global $wpseo_og;
       remove_action( 'wpseo_opengraph', array( $wpseo_og, 'description' ) );
       ```
   
 * ps. It is work for og_title but I never try to remove description.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] %%excerpt%%](https://wordpress.org/support/topic/excerpt-16/)
 *  [okito](https://wordpress.org/support/users/okito/)
 * (@okito)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/excerpt-16/#post-3164122)
 * You must edit wpseo-functions.php.
    Change this : `utf8_encode( substr( strip_shortcodes(
   strip_tags( utf8_decode( $r->post_content ) ) ), 0, 155 ) ),` to : `wp_html_excerpt(
   strip_shortcodes( $r->post_content ), 155 ),`

Viewing 3 replies - 1 through 3 (of 3 total)