Privet rebyata,
For some reason featured images on my site have low quality, much lower then the original image.
I understand that theme might compress image to show to show smaller size preview, but when I am in the post the image is very-very low quality. When I open the image from its path: mystic.com/bla.bla/image.jpg it has normal quality, but in post it’s pretty bad.
I tested and put the same image within the body of the post and its was good quality.
See comparison screenshot: http://imgur.com/c4Gyfd5 how picture looks when i open its url
how it actually looks at the site: http://imgur.com/M6XANOq
Hi
I’ve checked a few posts from your site site and the images displayed on posts have the same quality as the attachment. Here is an example: http://screencast.com/t/RcpJ8jYMitW2
If you still have this issue please provide a link where I can inspect it closer so I can get back to you with a more accurate answer.
Thanks!
Hi
The difference between the original image and the thumb displayed my occur because wordpress compress each image to keep the image size as low as possible. Follow this tutorial to increase the compression rate: https://premium.wpmudev.org/blog/fix-jpeg-compression/ Also you’ll have to regenerate your thumbs so the changes to be applied: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Thanks!
Hi
The theme don’t not controls the images compression, that is controlled by WordPress. However by follwing the indicated tutorial you can set your awn compression for for the images, just add this line in functions.php then regenerate your thumbnails.
add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );
Thanks!