Featured Image Incorrect Resolution

  • Author
    Posts
  • #46669

    Hello,

    The latest version of the theme loads the incorrect thumbnail on pages with list of posts. Now it generates and loads 450×300 resolution image while with older version such resolution image did not exist. I am using also Retina2X plugin and even though the retina image is not loaded. This does not happen on the landing page – there everything is just fine. The problem occurs only when there is a list of posts from a category or tag.

    Have you seen such behavior? Any ideas how can I fix this?

    Thank you,
    Vasil Krastev

    Website: vaskion.com

    #46794

    Hello again,

    I can add some more details to my analysis:

    1. I tried to use add_filter( ‘fluida_featured_srcset’, __return_false ); as suggested in other posts – no change.
    2. Then replaced the original featured image 450*x300.jpg and 512*300.jpg with the retina image *x300@2x.jpg and that fixed the problem!
    3. After that I commented the following lines in the setup.php:
    `// Custom image size for use with post thumbnails
    add_image_size( ‘fluida-featured’,
    ceil($fluids[‘fluida_sitewidth’]), //apply_filters( ‘fluida_featured_image_width’, fluida_featured_width() ),
    apply_filters( ‘fluida_featured_image_height’, $fluids[‘fluida_fheight’] ),
    false
    );

    add_image_size( ‘fluida-featured-third’,
    apply_filters( ‘fluida_featured_image_third_width’, 512 ),
    apply_filters( ‘fluida_featured_image_third_height’, $fluids[‘fluida_fheight’] ),
    $falign
    );`
    This one also fixed the problem as it stopped generating the small featured images below 600×400 resolution.

    My final assumption is that somehow the theme does not load any retina images below 600×400 resolution no matter if they exist or not… Do you know where might be the root cause for this? Any ideas how to fix it?

    • This reply was modified 6 years ago by vasskion.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Featured Image Incorrect Resolution’ is closed to new replies.