Comments benderute started the conversationJuly 17, 2017 at 9:43amhi support Team,how can i disable meta, link and style tags in the head section of the theme, when i don't need them?we use the font Verdana. So we don't need the stylesheet links "default-font-css" (Google-Fonts), "typolab-cbdxxxxx", "typo lab-font-variants".at the moment i just have the choice to overwrite them in my Child-Theme-css only with the !important instruction in the body Tag.Thanks for your help.Ute Bender[deleted] repliedJuly 18, 2017 at 7:45amHi there,To disable the default font, just add this code in functions.php of your child theme: add_filter( 'typolab_get_fonts', '__return_empty_array', 100 );This should work for you. If you ever decide to use custom font via Typolab just remove the above code from functions.php and you will be able to use it. Sign in to reply ...
hi support Team,
how can i disable meta, link and style tags in the head section of the theme, when i don't need them?
we use the font Verdana. So we don't need the stylesheet links "default-font-css" (Google-Fonts), "typolab-cbdxxxxx", "typo lab-font-variants".
at the moment i just have the choice to overwrite them in my Child-Theme-css only with the !important instruction in the body Tag.
Thanks for your help.
Ute Bender
Hi there,
To disable the default font, just add this code in functions.php of your child theme:
This should work for you. If you ever decide to use custom font via Typolab just remove the above code from functions.php and you will be able to use it.