I’m having trouble securing a site, and one of the services I use says “A file with an insecure url of “http://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700%2C400italic%2C700italic&ver=4.4.14” was loaded on line: 40”. The site is www.cherichristian.com. I looked through all of the css and can’t find that google font link in order to change it. If anyone could give me some advice on how or where to find that it would be greatly appreciated.
It’s loaded on line 40 of the html, not the css.
I think it probably just wants http
changing to https
on the url.
1 Like
Hi elwoodhauptmann welcome to the forum
Look at the “head” template and / or what populates it. As it is now, it is a mix of both http: and https:
If you want to be https: with out any warnings all of those http: will need to be changed eg.
<link rel="stylesheet" id="style-css" href="http://www.cherichristian.com/wp-content/themes/white-rock/style.css?ver=4.4.14" type="text/css" media="all">
<link rel="stylesheet" id="responsive-css" href="http://www.cherichristian.com/wp-content/themes/white-rock/css/responsive.css?ver=4.4.14" type="text/css" media="all">
<link rel="stylesheet" id="shortcodes-css" href="http://www.cherichristian.com/wp-content/themes/white-rock/css/shortcodes.css?ver=4.4.14" type="text/css" media="all">
<link rel="stylesheet" id="google-fonts-css" href="http://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700%2C400italic%2C700italic&ver=4.4.14" type="text/css" media="all">
<script type="text/javascript" src="http://www.cherichristian.com/wp-content/themes/white-rock/js/libs/modernizr-2.0.6.min.js?ver=20120206"></script>
<script type="text/javascript" src="http://www.cherichristian.com/wp-includes/js/jquery/jquery.js?ver=1.11.3"></script>
<script type="text/javascript" src="http://www.cherichristian.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<script type="text/javascript" src="http://www.cherichristian.com/wp-content/themes/white-rock/js/plugins.js?ver=20120206"></script>
<script type="text/javascript" src="http://www.cherichristian.com/wp-content/themes/white-rock/js/script.js?ver=20120206"></script>
<script type="text/javascript" src="http://www.cherichristian.com/wp-content/themes/white-rock/js/progression-shortcodes-lib.js?ver=20120206"></script>
<link rel="https://api.w.org/" href="https://www.cherichristian.com/wp-json/">
* notice the last in the above is https: but the others are http:
1 Like
Great, thank you for the info!
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.