Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #22707

    I add the widget that contain a popular, recents and tag in one and for the popular and recent posts the icon doesn’t show.

    You can see the problem here – http://www.andreanolanusse.com/pt/delphi-xe4-conheca-as-novidades-para-ios-e-mais/

    #116922

    Hi andreano,

    Try using this plugin to regenerate your thumbnails and see if that fixes the issue: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Regards,

    Devin

    #116923

    I did and still not working.

    If you look the recent article widgets, there is the respective icon for each article, but the widget that put together popular/recent/tags it’s not working

    #116924

    Hi,

    Please install the latest update 1.4 which is either out now or in a matter of a few hours since the update is massive enough to affect every theme file with dozens of improvements, and numerous bug eliminations.

    Thanks,

    Nick

    #116925

    Hi Nick,

    I just install update 1.4 and the problem remain there.

    Any other suggestion?

    Thanks,

    Andreano

    #116926

    Hi,

    Congratulations, you have found a genuine bug that I was able to reproduce. Well not so much a bug, since if you would have added the image via the slider it would have used that image, but there was no fallback to featured image unlike the other widgets.

    So please open up /framework/php/class-framework-widgets.php and find lines 944-947 that look like:

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }

    and replace the block of code above with the code below

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }
    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), 'widget' );
    }

    Please let us know how it worked out.

    Thanks,

    Nick

    #116927

    Hi Nick,

    I applied your code and now is working.

    Can I assume this code update will be include on the next theme update?

    Thanks,

    Andreano

    #116928

    Andreano,

    I submitted the pull request , so once Kriesi looks it over, in one form or another it will be in the next update.

    Enjoy the theme. I will close this thread, otherwise it will never go away from my ”to do” screen, lol. Have fun!

    Thanks,

    Nick

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Popular posts list bug’ is closed to new replies.