The fonts of our website change when our site is opened in Firefox and IE amongst others. This started after installing HTTPS / SSL.
After some research I found out that SSL blocks some (Google) fonts because it sees them as unsafe. How can I change this?
Kind regards,
Pim
Hey eric_peeters!
The font url should change from http to https automatically. Edit framework > php > class-style-generator.php, find this code on line 186:
$prefix = "http";
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') $prefix = "https";
Replace it with:
$prefix = "https";
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') $prefix = "https";
Cheers!
Ismael