Hi there,
I’m having problems with the automatically jpeg compression of wordpress. I’m building a woocommerce shop and added prodocut pictures with #fff white background. WP is now compressing them and is adding lines with #fefefe color to them which doesn’t looks good. So I’ve googled and found out that I can add
add_filter('jpeg_quality', function($arg){return 100;});
add_filter( 'wp_editor_set_quality', function($arg){return 100;} );
to the functions.php of X-Child to deactivate the compression. After that I’ve regenerated the thumbnails. But now it’s worse than before. Could you explain how to solve my problem?
Thank you!