• 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)
  • Theme Author Christine Rondeau

    (@crondeau)

    Thanks for the heads up on this. I’m currently really busy and may not have time to get around to updating the theme. I’ll try to get to this as soon as I can.

Viewing 1 replies (of 1 total)
  • The topic ‘https error Mon Cahier Version: 2.8.5’ is closed to new replies.