Remove google fonts

I’ve removed googlefonts but after update I see helvetica in navigation and footer. I want this removed since we use another setup for less external resources and lookups.

How do we disable it? I sent you one page in secure notes where you can see that there is more than native fonts.

Hi there,

Thanks for writing around! I checked your site and I don’t see the Helvetica font being loaded from an external source. Also I believe it’s not a google font, it’s a system font and you can use it without loading or installing the font. However you can try adding the following code in your Child Theme’s functions.php file to remove the google fonts.

// Remove Google Fonts
// =============================================================================

function x_remove_google_fonts(){
  wp_dequeue_style( 'x-font-custom' );
  wp_dequeue_style( 'x-font-standard' );
}
add_action( 'wp_enqueue_scripts', 'x_remove_google_fonts', 100 );

// =============================================================================

Or you can follow this thread https://theme.co/apex/forum/t/re-dequeue-google-fonts/12636/4

For the breadcrumbs font, you can change the Font Family from the Breadcrumbs element to remove it.

Hope this helps!

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