• Closed
  • Daniel Lorenz
    Spectator
    January 22, 2019 at 8:02 am #42499

    Hi,

    because auf the EU GDPDU i have to deactivate Google Fonts and Font Awesome.
    Where can i do that in the new theme evolve plus based on Kirki Framework?

    Thank you.

    Daniel

    Roman
    Spectator
    Posts: 3147
    January 22, 2019 at 11:58 am #42504

    Hello,

    to deregister the Google fonts you might add following in the functions.php of the child theme:

    add_action( 'get_footer', 'evolve_remove_google_fonts', 100 );
    
    function evolve_remove_google_fonts() {
    	wp_dequeue_style( 'evolve-google-fonts' );
    }

    The Font Awesome icons you can disable under Customize -> Extra -> Disable Font Awesome

    Daniel Lorenz
    Spectator
    Posts: 9
    January 23, 2019 at 8:09 am #42536

    Great, thank you very much! 🙂

    Roman
    Spectator
    Posts: 3147
    January 23, 2019 at 9:20 am #42537

    thanks 😉