nepouzivas tam nejaky modul na manazovanie google fontov? totiz tema nebola updatnuta uz dlhsiu dobu.
problem je v tom, ze tema vola google font, ale len jeho latin znakovu sadu.
skus toto pridat do functions.php v tvojej child theme
if ( ! function_exists( 'eltras_pinboard_register_styles' ) ) :
/**
* Deregister default pinboard web font and enqueue latin-ext version where available
*
* Registers stylesheets used by the theme.
* Also offers integration with Google Web Fonts Directory
* @uses wp_register_style() To register styles
*
*/
function eltras_pinboard_register_styles() {
wp_deregister_style( 'pinboard-web-font', get_stylesheet_uri(), $pinboard_deps, null );
$web_fonts = array(
'droid-sans' => 'Droid+Sans',
'lato' => 'Lato',
'pt-sans' => 'PT+Sans',
'cantarell' => 'Cantarell',
'open-sans' => 'Open+Sans',
'oswald' => 'Oswald',
'yanone-kaffeesatz' => 'Yanone+Kaffeesatz',
'quattrocento-sans' => 'Quattrocento+Sans',
'droid-serif' => 'Droid+Serif',
'lora' => 'Lora',
'pt-serif' => 'PT+Serif'
);
if( array_key_exists( pinboard_get_option( 'body_font' ), $web_fonts ) || in_array( pinboard_get_option( 'headings_font' ), $web_fonts )|| in_array( pinboard_get_option( 'content_font' ), $web_fonts ) ) {
$web_fonts_stylesheet = 'http' . ( is_ssl() ? 's' : '' ) . '://fonts.googleapis.com/css?family=';
if( array_key_exists( pinboard_get_option( 'body_font' ), $web_fonts ) ) {
$web_fonts_stylesheet .= $web_fonts[pinboard_get_option( 'body_font' )] . ':300,300italic,regular,italic,600,600italic';
}
if( ( pinboard_get_option( 'headings_font' ) != pinboard_get_option( 'body_font' ) ) && array_key_exists( pinboard_get_option( 'headings_font' ), $web_fonts ) ) {
$web_fonts_stylesheet .= '|' . $web_fonts[pinboard_get_option( 'headings_font' )] . ':300,300italic,regular,italic,600,600italic';
}
if( ( pinboard_get_option( 'content_font' ) != pinboard_get_option( 'body_font' ) ) && ( pinboard_get_option( 'content_font' ) != pinboard_get_option( 'headings_font' ) ) && array_key_exists( pinboard_get_option( 'content_font' ), $web_fonts ) ) {
$web_fonts_stylesheet .= '|' . $web_fonts[pinboard_get_option( 'content_font' )] . ':300,300italic,regular,italic,600,600italic';
}
$web_fonts_stylesheet .= '&subset=latin,latin-ext';
} else
$web_fonts_stylesheet = false;
if( false !== $web_fonts_stylesheet ) {
wp_register_style( 'pinboard-web-font', $web_fonts_stylesheet, false, null );
$pinboard_deps = array( 'pinboard-web-font' );
} else
$pinboard_deps = false;
wp_register_style( 'pinboard', get_stylesheet_uri(), $pinboard_deps, null );
wp_register_style( 'colorbox', get_template_directory_uri() . '/styles/colorbox.css', false, null );
}
endif;
add_action( 'wp_enqueue_scripts', 'eltras_pinboard_register_styles' );