Hello.
I have main huge problem with letters from my alphabet, I can’t go on before I solve it.
On the page:
– Menu
– Heading section
– You are Here – bar
polish characters are missing
Text in the body is ok, but missing letters are frustrating!
This is my alphabet
http://en.wikipedia.org/wiki/Polish_alphabet
Help me solve this problem (change font or something)
Hey magicznechwile!
Please try adding Latin extended subset. See Peter`s post here – https://kriesi.at/support/topic/add-a-new-custom-font/#post-212124
Regards,
Yigit
Before I’ve tried Peter’s way I’ve tried to add a google font to the theme (Found font with all my special letters). Didn’t work.
I’ve chosen “Arimo”
http://www.google.com/fonts/specimen/Arimo
What exacly code and where I should add to the functions.php to see Arimo font on the list in the Styling options (Heading font)?
If I pass this I will try to add latin subset.
Explain me please (in points) how to add google font Your template. (I’m not to smart in php,css etc.)
Hi!
You can simply add the code Peter provided to functions.php file below following line
global $avia_config;
as following
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext';
return $fonts;
}
Best regards,
Yigit