badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Change fonts in greek language

#20477

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!