I’ve tried 2 php solutions to stop WP from automatically compressing jpegs…
add_filter(‘jpeg_quality’, function($arg){return 100;});
and
filter(‘jpeg_quality’, function($arg){return 100;});
add_filter( ‘wp_editor_set_quality’, function($arg){return 100;} );
but neither seem to work with the Epik Theme.
Anyone know of a solution?
Many thanks