-
AuthorPosts
-
June 8th, 2017 at 20:42 #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 KrastevWebsite: vaskion.com
June 9th, 2017 at 18:56 #46794Hello 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 7 years ago by vasskion.
-
AuthorPosts
The topic ‘Featured Image Incorrect Resolution’ is closed to new replies.