Hello.
I have strange problem. When Im logged in to wordpress admin, my fonts in site menu are all right, but when I log out, font (style) is different and polish fonts (ż, ą, ś, ć…) are rendered using different font (and style).
Logged in:
Logged out:
Please help (this is a live site).
BTW, how can I update layerslider plugin ? No option to update in plugin section.
Best regards
Renata
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter( 'avf_google_heading_font', 'avia_add_custom_font');
add_filter( 'avf_google_content_font', 'avia_add_custom_font');
function avia_add_custom_font($fonts) {
$fonts['Open Sans'] = 'Source Sans Pro:300,400';
return $fonts;
}
LayerSlider gets updated with the theme (as it is bundled). If you want you can buy it standalone and update it at will.
Cheers!
Josue