ShipworkSite inspection
Checks
Every error, explainedGuides →
Pricing Learn Guides

Is anything on your secure page loading insecurely?

A page served over https is only secure if its resources are too. The moment one image or script loads over http, browsers block it and the page breaks in ways that can be hard to trace.

Runs the free audit, which includes this check where it applies to your site. Nothing is stored.

What this check inspects

On an https page, Shipwork scans the script, img, link, iframe, source, video, audio and object elements for src, href or data values that start with http://. It reports the count and the first fifty offenders. On an http page it notes that mixed content does not apply, since everything is already insecure.

What a failure means

Any insecure resource on an https page is an error. Browsers block active mixed content outright and may rewrite or block passive content, so a stylesheet, image or tracking script can simply not load. The page often looks subtly broken rather than obviously wrong.

How to fix it

  1. Change the resource URL to https. Most third parties serve both schemes and only the link needs updating.
  2. If a third party does not support https, move that asset to a host that does.
  3. Use root-relative URLs rather than protocol-relative ones on an https-only site.
  4. Search the templates and any embedded widgets, not just the main theme, since old testimonial or chat widgets are common sources.

A typical failure, worked through

The setupA store migrates to https but an old review widget still injects a badge image over http from a legacy domain.

What the check reportsThe check reports one insecure img resource. The browser blocks it, leaving a broken image where the badge should be, while the rest of the page looks fine.

The pointMixed content is usually one forgotten third-party asset, not the main theme. The check names the exact tag so you do not have to hunt.

Questions

What counts as mixed content?
Any subresource loaded over http on a page served over https: images, scripts, stylesheets, iframes, fonts, video and audio.
Does mixed content affect SEO?
Indirectly. Blocked resources break layout, tracking and sometimes content, and browsers show a not-secure warning that costs trust and conversions.
Why does my local page not show the problem?
Browsers apply mixed-content blocking based on the page scheme. On http staging everything loads, so the problem only appears once the page is served over https.

Related checks and guides