add_filter('fl_builder_google_fonts_preconnect', function($url) {
return str_replace('http://', 'https://', $url);
});
function force_https_for_google_fonts($buffer) {
$buffer = str_replace("href='http://fonts.googleapis.com", "href='https://fonts.googleapis.com", $buffer);
$buffer = str_replace('href="http://fonts.googleapis.com', 'href="https://fonts.googleapis.com', $buffer);
return $buffer;
}
function start_buffering_google_fonts_fix() {
ob_start('force_https_for_google_fonts');
}
add_action('template_redirect', 'start_buffering_google_fonts_fix');