Skip to main content

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.

Conversion of image formats to .webP

Artur Abakarov

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

D@vid