Conversion of image formats to .webP
Would it be possible to know if you intend to remove or make optional the automatic conversion of image formats to .webP? If so, when ?
This is really important to know because WebP breaks quite a few images, starting with my siteβs logo and user avatars when an email is sent. It really doesnβt look professional at all.
Thank you.
Hi, David! To disable it, there is an option via snippet in the documentation.
add_filter('fluent_community/media_upload_resize', '__return_false', 10); // disable image resizing
add_filter('fluent_community/convert_image_to_webp', '__return_false', 10); // disable webp conversion
Artur AbakarovΒ Thx !