• The widget can break the widget areas of a wordpress site in cause of a request error. This is what the error log says:

    Cannot use object of type WP_Error as array in .../sk_latest_posts_widget.php on line 61

    Bug Fix:
    replace in sk_latest_posts_widget.php line 61 :

    if($page && !empty($page['body'])){
    with
    if($page && is_array($page) && !empty($page['body'])){

Viewing 1 replies (of 1 total)
  • My site is in greek, and the database is UTF-8. Is there anyway to make the widgets to show content in UTF-8 because all i can see is questionmarks 😛

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Sk Latest Post Widget] Bug Report’ is closed to new replies.