https error Mon Cahier Version: 2.8.5
-
In functions.php, function mon_cahier_scripts()
There is a line: wp_enqueue_style(‘googleFonts’, ‘https://fonts.googleapis.com/css?family=Cutive|Reenie+Beanie’);This gives problems when the website uses https.
So, I changed it to:
$protocol = is_ssl() ? ‘https’ : ‘http’;
wp_enqueue_style(‘googleFonts’, $protocol.’://fonts.googleapis.com/css?family=Cutive|Reenie+Beanie’);Regards,
Peter Hofstee
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘https error Mon Cahier Version: 2.8.5’ is closed to new replies.