-
AuthorPosts
-
May 2, 2013 at 7:55 am #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/
May 2, 2013 at 3:12 pm #116922Hi 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
May 2, 2013 at 10:27 pm #116923I 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
May 3, 2013 at 9:43 am #116924Hi,
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
May 5, 2013 at 6:27 am #116925Hi Nick,
I just install update 1.4 and the problem remain there.
Any other suggestion?
Thanks,
Andreano
May 5, 2013 at 7:09 pm #116926Hi,
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
May 6, 2013 at 2:16 am #116927Hi 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
May 6, 2013 at 2:53 am #116928Andreano,
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
-
AuthorPosts
- The topic ‘Popular posts list bug’ is closed to new replies.