Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1280566

    wie bekomm ich die Verbindung zu google web fonts vollständig getrennt?
    Es sind scheinbar immer noch irgendwo welche versteckt.

    Bildschirmfoto-2021-02-15-um-14-10-13

    Wie kann ich sie ausfindig machen bzw. global für die ganze Website entfernen?
    (aufgrund der DSGVO Thematik)

    • This topic was modified 3 years, 9 months ago by streetbunny80.
    #1280567

    ach ja, hier ist die Website um die es geht: http://www.mein-unfallzentrum.de

    #1281574

    Hi,

    Thanks for the update. If you don’t want to load Google fonts, then you would have to select web safe fonts under Enfold->General Styling->Fonts. Or load the fonts locally from your own server, using custom CSS.

    Best regards,
    Rikard

    #1281863

    Hello, thank you for your answer. But I suppose it was difficult to understand my german question.
    So I try in english:

    because of the DSGVO I want to kill all connections to the google web fonts.
    I have uploaded the fonts i want (Quicksand and Open Sans) local on my webspace.
    in the enfold settings i updatet it: (Enfold/Import Export/ Manager für Benutzerdefinierte Schriftarten ZIP-Datei hochladen/auswählen)

    But when i look in the entwicklertool of chrome, i see, there is still the connection to google web fonts.

    I suppose in any item somewher is the google webfont. Bud how can i find and change?
    Or another strategy?
    How can I use a custom CSS to fix the problem?

    #1282680

    Hi,
    Sorry for the very late reply, to remove all google fonts, try adding this code to the end of your functions.php file in Appearance > Editor:
    ` /*remove all google fonts*/
    add_action( ‘init’, ‘enfold_customization_switch_fonts’ );
    function enfold_customization_switch_fonts() {
    global $avia;
    $avia->style->print_extra_output = false;
    }`

    I tested this on my localhost with adding a downloaded Google font in the Custom Font Manager of the theme settings, so that the font is loaded locally, I then set the elements to use this font in the Advanced Styling, H1-H6, and it worked correctly without connecting to fonts.google

    Best regards,
    Mike

    • This reply was modified 1 year, 11 months ago by Yigit.
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.