Old photo sizes
-
First of all, thank you for the ewww plugin. After I installed this plugin on my website, the following dimensions occurred every time I uploaded a photo. Also, I made the settings in the wp administration panel as follows.
https://i.ibb.co/GPnS7nj/wpadminmedia.jpg
Then I added the code below because I don’t want 1024×576 1536×864 2048×1152 photos of this type.
my theme functions.php: ... add_image_size( 'medium_large', '640', '0', false ); add_image_size( 'wordpress-releated', '195', '111', true ); add_image_size( '1280px', '1280', '0', false ); } add_action( 'init', 'j0e_remove_large_image_sizes' ); function j0e_remove_large_image_sizes() { remove_image_size( '1536x1536' ); remove_image_size( '2048x2048' ); }
Then I deleted 1024×576 1536×864 2048×1152 files of this size manually from ftp.
I then deleted the ewww plugin completely.
Then I reinstalled the ewww plugin.
I then optimized all images, regenerated thumbnails etc. (it took about 1 hour)
I then cleared both Cloudflare caches and all caches on my website several times.
I then cleared the browser cache as well.
Currently, the screen settings on the ewww panel are as follows:https://i.ibb.co/qyHdGmq/ewwwset.jpg
However, the problem is that; The old photo sizes are still visible in the html code as below. when I click on the dimensions I removed it gives 404 error code, but they still appear in the html code.
srcset=" ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-195x111.jpg 195w, ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-320x180.jpg 320w, ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-640x360.jpg 640w, ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-831x467.jpg 831w, ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-1024x576.jpg 1024w" ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-1536x864.jpg 1536w, ../uploads/2022/01/a78049-sararmis-yapraklar-20211104_143032-2048x1152.jpg 2048w,
These are the ones that come to my mind, dear friends, thank you in advance for your help and I wish you a good work. With love..
- The topic ‘Old photo sizes’ is closed to new replies.