Hello.
Seems it loads other fonts or even with other weight and after some seconds loads the fonts we
need as we define them in child theme functions.php file:
function load_fonts() {
wp_register_style(‘googleFonts’, ‘https://fonts.googleapis.com/css?family=Open+Sans:100,300,600,subset=greek,latin’);
wp_enqueue_style( ‘googleFonts’);
}
add_action(‘wp_print_styles’, ‘load_fonts’);
How can we fix that problem please?
Thanks in advance