Is there any additional way to stop the Enfold theme from compressing images? My client is complaining that the images are being compressed and does not look crisp on the portfolio page – https://rgoproductions.com/portfolio/
I know enfold does compress the images but is there a way to stop this?
Hey navindesigns,
Thank you for the inquiry.
Please note that the theme does not compress the images. Compression is a default feature of WordPress, which defaults to 90% image quality (only for jpeg images), but the theme increase this to 100%. If you want to adjust it manually, you can add these filters in the functions.php file:
add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
function avf_set_quality_mod($quality) { $quality = 55; return $quality;}
Did you install any image compression plugin?
Best regards,
Ismael