Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #24000

    Hi,

    finally pics schow up in the enfold combo widget, updating to 1.5 did the trick. But now they do not show as thumbnails, rather in full size. Any idea on how to solve this? Thanks in advance.

    Cheers, Sebastian.

    #121949

    This will be fixed in the next version. Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace:

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    with

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget';
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    #121950

    Great, thanks, Dude, that did the trick.

    Cheers, Sebastian.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold Combo Widget’ is closed to new replies.