January 14, 2015 at 6:31 am
#20477
Theme Horse Support Team
Keymaster
hi bertsouklis,
If you want to add the latin character then it needs code customisation. So you need to create a child theme and unhook the functions and then only customise the code.
The code is inside ultimate-pro -> inc -> functions -> functions.php on line no 67
You will find the below code:
wp_register_style( ‘interface_google_font’, ‘//fonts.googleapis.com/css?family=’.$interface_google_font_load .’:400,700italic,700,400italic’);
replace above with below code:
wp_register_style( ‘interface_google_font’, ‘//fonts.googleapis.com/css?family=’.$interface_google_font_load .’:400,700italic,700,400italic&subset=latin,cyrillic-ext,latin-ext’);
This may help you
Thank you!