Title: Remove Google Fonts
Last modified: February 1, 2022

---

# Remove Google Fonts

 *  Resolved [stevespeirs](https://wordpress.org/support/users/stevespeirs/)
 * (@stevespeirs)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/remove-google-fonts-19/)
 * Is it possible to completely remove Google fonts from the Astrid theme?
 * I removed the reference to Google fonts at Appearance | Customize | Fonts, but
   I’m still seeing the fonts on the website.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-google-fonts-19%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * (@kharisblank)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/remove-google-fonts-19/#post-15317587)
 * Hi [@stevespeirs](https://wordpress.org/support/users/stevespeirs/),
 * Thank you for contacting us. I am happy to help with your queries.
 * You’re right, Google Fonts URLs still load on the site when there are no fonts
   selected in Customizer.
 * To remove fonts URLs, try adding this function to a child theme’s functions.
 *     ```
       function astrid_child_remove_google_fonts() {
   
          wp_dequeue_style( 'astrid-body-fonts' );
          wp_dequeue_style( 'astrid-headings-fonts' );
   
       }
       add_action( 'wp_enqueue_scripts', 'astrid_child_remove_google_fonts', 99999 );
       ```
   
 * Or use [Code Snippets](https://wordpress.org/plugins/code-snippets/) to apply
   the code without child theme.
 * Hope that helps.
 * Regards,
    Kharis
 *  Thread Starter [stevespeirs](https://wordpress.org/support/users/stevespeirs/)
 * (@stevespeirs)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/remove-google-fonts-19/#post-15324658)
 * Thank you. That worked!
 *  [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * (@kharisblank)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/remove-google-fonts-19/#post-15327461)
 * You’re welcome [@stevespeirs](https://wordpress.org/support/users/stevespeirs/)!
 * Please let us know in a new topic if you have any further questions, or if we
   can provide you with any other assistance.
 * Regards,
    Kharis

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove Google Fonts’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/astrid/1.20/screenshot.png)
 * Astrid
 * [Support Threads](https://wordpress.org/support/theme/astrid/)
 * [Active Topics](https://wordpress.org/support/theme/astrid/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/astrid/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/astrid/reviews/)

## Tags

 * [google fonts](https://wordpress.org/support/topic-tag/google-fonts/)

 * 3 replies
 * 2 participants
 * Last reply from: [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/remove-google-fonts-19/#post-15327461)
 * Status: resolved