Tagged: , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #360074

    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 in fonts
    logged in font style

    Logged out:
    logged out fonts
    logged out styles

    Please help (this is a live site).

    BTW, how can I update layerslider plugin ? No option to update in plugin section.

    Best regards
    Renata

    #360436

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.