Tagged: enfold, Fonts, google fonts, styling, typography, web fonts
Hi,
I am using ‘Open Sans’ for headlines. However, Baltic characters are not displayed. I checked the Open Sans font on Google and it seems to contain the Baltic characters such as ‘ą, č, ę, ė, į, š, ų, ū, ž’. How can I get them to be displayed on my website which is based on Enfold theme?
Sveikas!
Please add following code to Functions.php file in Appearance > Editor
function add_subset_func($fontlist) {
$fontlist .= "&subset=latin,latin-ext,cyrillic,cyrillic-ext";
return $fontlist;
}
add_filter('avf_google_fontlist', 'add_subset_func');
Regards,
Yigit
It works. Thank so much!