Okay
  Public Ticket #1243266
Disable link/Style/meta tags in head section
Closed

Comments

  • benderute started the conversation

    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

  • [deleted] replied

    Hi 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.