Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #701475

    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

    #701478

    Hi again
    I was trying that way but it doesn’t work for me, because problem is only on iOS.

    #701479

    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

    #701544

    Works great, thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Google Fonts Latin ext problem on iOS’ is closed to new replies.