Secure Certificates and Content

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
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Resetting Your Site Manager Password

The Site Manager has two types of accounts: The Administrator Account, which uses a username...

Web Statistics Not Working

Web statistics are shown based upon the domain that is used to access the Site Manager. Would you...

Changing Your Password

To change your Site Manager password, open the account menu in the top-right corner of the header...

Custom Code

You can add custom code or scripts to your website in several ways, depending on where you want...

Password Protecting Pages

You can restrict access to a page and its subpages by enabling password protection. How to...