Hi
I have similar problem like described here but on all browser in Windows and Android all fonts works great.
The problem is only with iOs (iPhone and iPad) where latin ext (polish special letters) are displaying in standard font (Arial) but whole text is in Google fonts (Open Sans and Meriwether)
What code I should add to css area to have polish special letters on iOS?
Thank you in advanced
Krzysztof
Hi again
I was trying that way but it doesn’t work for me, because problem is only on iOS.
Hi!
Please try adding following code to wp-content/themes/enfold/functions.php file
function add_subset_func($fontlist) {
$fontlist .= "&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek";
return $fontlist;
}
add_filter('avf_google_fontlist', 'add_subset_func');
Best regards,
Yigit
Works great, thank you!