Hi,
I have a problem with Turkish characters, on the Heading tags, H1 – H2 etc. (see pic)
On content section so body and footer its ok. I think the solution is in CSS H1 style changing
text-transform:uppercase to none;
but how :)
Regards
Dogan
Hi Dogan,
Can you please create me an administrator account? post it here as a private reply.
Regards,
Josue
Hi,
Its on localhost now. I did not install on webhost.
And why do you need admin account? Aren’t you Kreisi developer or supporter and haven’t you got any Enfold intall on your PCs? I think you can look at and try in any Enfold install. I haven’t changed any think.
If you can’t solve a small issue you can close this support page and don’t answer the questions if you don’t know !
Hey!
I know what is causing the issue and the fix, but it requires some coding in the theme files, that’s why i’m asking for an admin account. Anyhow, i’ll leave instructions here so you can do it yourself:
1. Open /framework/php/class-style-generator.php and look for line 365:
$this->extra_output .= "<link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=".this->google_fontlist."' type='text/css' media='all'/> \n";
Replace it by this:
$this->extra_output .= "<link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=".apply_filters('avf_google_fontlist', $this->google_fontlist)."' type='text/css' media='all'/> \n";
2. Add this to the very end of functions.php:
function add_subset_func($fontlist) {
$fontlist .= "&subset=latin,latin-ext";
return $fontlist;
}
add_filter('avf_google_fontlist', 'add_subset_func');
This filter will be included in the next update.
Regards,
Josue