I have WooCommerce & Latest WordPress setup.
Problem I am facing is the edit product page and product list page in admin side is not showing images.
The reason is that WordPress admin has HTTPS URL and the images are trying to load from HTTP URL. But I don’t know why WordPress/WooCommerce is trying to load these images using HTTP URL.
I have tried to disable all plugins one-by-one but it doesn’t make any difference.
Please help me if anyone have faced same issue or have any solution.
Try change setting here image and change your .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]
</IfModule>
You can reead more here.
Try adding this to your functions.php
WordPress now adds extra meta data within images to help with responsiveness, this code will disable that for now.
Found on: http://www.barecode.co/wordpress-woocommerce-broken-images-since-update/