Disable Google Fonts

Hello,
I want to disable the Google Fonts on my page. I´ve tried different plugins that should do this. But it doesn´t work.
I´ve also tried to add a script (different examples of this forum) to my child theme. But it also doesn´t work.
Could you help me please?
Thanks a lot in advance.

Best regards,
Christine

Hi Christine,

If you have updated to X version 6.1.x and Cornerstone 3.1, you can fully disable Google Fonts without custom code, you can follow these steps:

  1. Go to Theme Options → Typography

  2. Enable use of the Font Manager

  3. Click the Settings icon in the Bar and navigate to Fonts

  4. Modify each font to reference a system font instead of a Google font

  5. After these changes are saved, no references will be made to Google Fonts on the front end of your site.

  6. Additionally, you can immediately force Google Fonts to not load by adding this code to functions.php of a child theme:

    add_filter( 'cs_load_google_fonts', '__return_false' );

https://theme.co/changelog/#theme-pro-2-1-0-theme-x-6-1-0-cornerstone-3-1-0

Hope this helps.

1 Like

Hello,
thanks, this helps a lot.

Could you please tell me how I can add the fonts without loading from Google to the website?
Or could you give me a tutorial link for this?

Thanks in advance.

Best regards,
Christine

Hi Christine,

I believe you will find this method “Adding Custom Fonts in WordPress Using CSS3 @font-face” in that article helpful in this case.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.