Blocking Google Fonts in wordpress website

If you check your source code and look for “fonts.” you will find a line that is calling the stylesheet. This could be “googleapis.com” or “google.com or other URL. Here’s how mine looks (using Astra theme); <link rel=”stylesheet” id=’astra-google-fonts-css’ href=”https://fonts.googleapis.com/css?family=Roboto%3A400%2C&#038;display=fallback&#038;ver=4.0.2″ media=”all” /> Make note of the ID (astra-google-fonts-css) and then add the following to your … Read more

How do I remove Google Fonts from a parent theme?

You may also want to try to deregister the style within your function since it has been register in the parent theme function. Try: function remove_google_fonts_stylesheet() { wp_dequeue_style( ‘pixgraphy_google_fonts’ ); wp_deregister_style(‘pixgraphy_google_fonts’); } add_action( ‘wp_enqueue_scripts’, ‘remove_google_fonts_stylesheet’, 100 );