Tagged: 

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

    This thumbnail don’t appear, I dont know why, but it’s like so ugly if not appear. you can see on the blog’s page of my website. See: http://diamondblackdever.com/blog/ -> The plugin are on left sidebar.

    #119741

    Hi iqueda,

    Do you mean the tabs widget? If so, the thumbnails will only appear if you set a featured image for a post.

    Regards,

    Devin

    #119742

    How can I set the image as a featured?

    #119743

    On the right hand side of the visual editor is a wordpress meta box named “Featured Image”. If you don’t see it, go to the top right of your screen and click the Screen Options tab. Check the box for Featured Image then close the tab and you should now see the featured image box.

    You just click on Set Featured Image and it will prompt you on setting one.

    Regards,

    Devin

    #119744

    I Do that, But not appear

    #119745

    This is a bug and we’ll fix it in the next update. For now you can fix it by modifying wp-contentthemesenfoldframeworkphpclass-framework-widgets.php. open up the file and replace:

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

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

    with

    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(), $image_size );
    }

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

    #119746

    Now the image of widget are so big that the description desapear. Check: http://diamondblackdever.com/blog/

    #119747

    Hi,

    Please add this on your custom.css

    .news-thumb {
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    }

    Regards,

    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Thumbnail of Comb Plugin.’ is closed to new replies.