Fix https insecure warnings
-
If you are moving to https:// (and you should be) you may find you get loads of insecure content warnings
'(page) was loaded over HTTPS, but requested an insecure stylesheet 'https://fonts.googleapis.com/css?family=Quicksand|Open+Sans'. This request has been blocked; the content must be served over HTTPS
This is caused by some hard coding that would likely have been fixed if this plugin was being maintained. It was painful to find ??
Here is how you can fix this yourself.
You need to edit 3 files –
/wp-content/plugins/recipe-card/js/post.js
/wp-content/plugins/recipe-card/js/theme.js
/wp-content/plugins/recipe-card/yumprint-recipe.phpIn each of them search for https://fonts.google and insert an s to make it https://fonts.google
The files are minimised so they are pretty difficult to read as they aren’t formatted well, but doing a search will find it.
This worked to solve the issue on a site with many recipes.
- The topic ‘Fix https insecure warnings’ is closed to new replies.