HTTPS and Mixed Content
Your website uses a secure SSL certificate and can be accessed using https://. This ensures that your site is encrypted and secure for visitors.
What is Mixed Content?
If your website is loaded over HTTPS but includes content (such as images, scripts, or embedded content) that uses http://, that content may be blocked by the browser.
This is known as mixed content.
How to Fix Mixed Content
To resolve this issue, update any insecure URLs by replacing http:// with https://.
For example:
Before:
<iframe src="http://www.google.com/calendar/embed..."></iframe>
After:
<iframe src="https://www.google.com/calendar/embed..."></iframe>
Important Notes
- Some external services may only support http://. In these cases, the content may not display on secure pages.
- If content is not loading, check any embedded code or links for insecure URLs.
Tips
- Always use https:// when embedding content or linking to external resources
- Review older content or embeds, as they may still use http://
- If unsure, test your page in a browser and check for blocked content warnings
