Request: Filter Image Quality Based On Role
With the latest release we have a way to turn off image compression (THANK YOU):
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
Is there a way to filter based on role? The admins and moderators are posting things for students that must not be compressed. However, the students can also upload, and compression can happen there.
Thanks!