Disable Google Fonts Completely

If you wish to disable all calls to the Google Fonts API, simply integrate the following snippet. It completely removes all calls to the API, though third party plugins might still fetch Google Fonts.

add_filter('blocksy:typography:google:use-remote', function () {
  return false;
});

add_filter('blocksy_typography_font_sources', function ($sources) {
  unset($sources['google']);
  return $sources;
});
Not the solution you are looking for?

Please check other articles or open a support ticket.