I use Elementor on https://chwyto.pl
On the homepage there’s no encryption (although it says that the certificate is OK, there is no padlock).
When I go to subpage, there is a padlock.
Hi @gora144,
That looks like mixed content.
Mixed content errors mean that your website is being loaded over HTTPS but some of the resources are being loaded over HTTP. To fix this you will need to edit your source code and change all resources to load over a relative path, or directly over HTTPS.
For example, if you load your images with a full URL:
<img src="http://example.com/image.jpg" />
You would want to change this to:
<img src="//example.com/image.jpg" />
By removing the http:
, the browser will use whichever protocol the visitor is already using. An alternative option would be to enable the Automatic HTTPS Rewrites feature that can potentially fix these errors for you automatically. Do be aware that resources loaded by JavaScript or CSS will not be automatically rewritten and mixed content warnings will still appear.
See this Community Tip for further details
I’m afraid that’s not the case.
I have 301 redirect to https set: .htaccess redirect. With Really Simple SSL plugin.
Corrector of mixed content is working.
SSL Insecure Content Fixer plugin tells me that HTTPS detection is working correctly and it’s switched to “HTTP_CF_VISITOR (Cloudflare Flexible SSL); deprecated, since Cloudflare sends HTTP_X_FORWARDED_PROTO now”
I’ve checked the page with SSL-check: crawl your HTTPS website and find unsecure content :
Done. Total pages crawled: 93
No issues found
Pages failed to crawl (error returned from the server) :
Chwyto - empty response
https://chwyto.pl/comments/feed/ - empty response
Well when i open your website i can see 10 mixed content warningds:
This topic was automatically closed after 30 days. New replies are no longer allowed.