Product Image not showing up in wordpress-woocommerce

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.

Read More

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.

Related posts

2 comments

  1. 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.

Comments are closed.