Hi,
Thank you for the detailed explanation.
Based on the console output and your description, this is a classic mixed content issue. Although the page itself is loaded over HTTPS, the image URL used by the Popover addon is still being resolved as HTTP, which modern browsers block for security reasons.
To resolve this, please ensure the following:
- When adding or selecting the image, make sure the image URL is explicitly using
https:// instead of http://.
- If the image is manually entered anywhere (e.g. custom fields, Popover content, or custom HTML), replace any
http:// URL with https://, or preferably use a relative path (for example:
/images/your-image.webp).
- Also check template settings, SP Page Builder global options, and any custom modules or overrides where the image might be referenced, as the HTTP URL could be coming from there.
Even if the Media Manager shows HTTPS, a hardcoded HTTP reference in the database or addon configuration can still cause the browser to block the image.
Once all image references are served over HTTPS (or via relative paths), the mixed content warning should be resolved and the image should display correctly.
Kind regards