Home › Forums › Air WordPress Theme › Blurred pictures in Portfolio thumbnail
- This topic has 5 replies, 2 voices, and was last updated 3 years, 8 months ago by
SeaTheme.
- AuthorPosts
- October 23, 2018 at 3:13 am #16791
Hello,
Thank you for this amazing WordPress theme, I love it.
I have an issue with my Portfolio pages (List type: Grid Thumbnail).
I had not noticed before but it is very visible on my last post (“Tokyo” with the photo of the 5 girls) where you can see that the picture is blurred. The size of my picture is 1500 x 1200, so bigger than the recommanded size of 800 x 800.You can see on my homepage: http://mikebujoli.com/ and on this page http://mikebujoli.com/places/
Thanks for your help.
October 23, 2018 at 6:40 am #16793Hi,
The thumbnails are not the origin size, it was cropped. It is possible to show origin size by changing some codes, it should be more clear.
Please find line 569 of /functions/interface/interface-functions.php:
default: $gallery_image_size = 'airtheme-thumb-43-small'; break;
update to:
default: $gallery_image_size = 'full'; break;
Regards!
Bwsm – uiueux.com – Twitter – FacebookOctober 23, 2018 at 4:04 pm #16797Hi,
Thanks for your answer. Unfortunately, it does not work.
I use a child-theme and I made the update directly in the main theme.October 24, 2018 at 3:04 am #16798This reply has been marked as private.October 24, 2018 at 1:38 pm #16800Sent. Many thanks for your help.
October 25, 2018 at 6:18 am #16805Please find /functions/interface/interface-functions.php:
line 579:
$thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), $gallery_image_size);
update to:
$thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full');
- AuthorPosts
- You must be logged in to reply to this topic.