Robin Lundgren
Robin Lundgren

Reputation: 29

Solve issue when http won't change to https

I have installed an SSL-certificate for my website but it is not working for some pages. I went inside of the Google Chrome Console option and found this error message:

Mixed Content: The page at 'https://www.feelhome.se/produkt/blackgrey-feather/' was loaded over HTTPS, but requested an insecure font 'http://www.feelhome.se/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons.woff'. This request has been blocked; the content must be served over HTTPS.

I went inside of the "insecure font" but there is not "http" URL there that I can change to remove this error message. How can I remove this error message that appears?

Upvotes: 0

Views: 991

Answers (1)

kicken
kicken

Reputation: 2167

You need to change the reference to the font in your CSS file so that it uses a https:// URL.

All external resources (css, javascript, images, etc) imported into the page need to either be relative URL so that they automatically use the same protocol, or you need to explicitly use https:// in their URL.

Upvotes: 3

Related Questions