Hi @vasword321,
Thanks for contacting us.
I inspected the images, and I could see the issue — it’s a mixed content problem. Your image src is loading over https:// but the srcset URLs are still using http:// (screenshot), so modern browsers block them as insecure.
This is a common issue when SSL is added to a site without updating the WordPress database URLs.
To fix this:
- Go to Settings → General in your WordPress dashboard and make sure both WordPress Address (URL) and Site Address (URL) start with
https:// (not http://).
- Then do a database search-replace to update all the old
http:// URLs. The easiest way is to use the free plugin Better Search Replace, and replace:
- Search for:
http://www.signaturecoats.in
- Replace with:
https://www.signaturecoats.in
- Run it on all tables, and do a dry run first to preview changes.
- After that, clear any caching plugin cache and reload the site.
I hope this helps!