Tagged: font rendering
Hello, Team Kriesi!
I have an issue with partly bold partly light font appearance on various browsers using characters j, ā, č, ļ, ķ, ģ, ē, ī, ž, ņ and others like that. Looks like these characters are taken from other fonts. I use Open Sans throughout the whole site.
Effect looks like: jāsauc
How can I resolve this issue?
Regards.
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function add_subset_func($fontlist) {
$fontlist .= "&subset=latin,latin-ext";
return $fontlist;
}
add_filter('avf_google_fontlist', 'add_subset_func');
Cheers!
Josue
Thanks!
Worked for me!