Skip to content

Instantly share code, notes, and snippets.

@pascalbajorat
Created September 8, 2022 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pascalbajorat/2c047ba06b5aadd8b912371d412564c5 to your computer and use it in GitHub Desktop.
Save pascalbajorat/2c047ba06b5aadd8b912371d412564c5 to your computer and use it in GitHub Desktop.
Jupiter - Google Fonts
<?php
function bm_fix_jupiter_fonts()
{
wp_dequeue_script('mk-webfontloader');
wp_deregister_script('mk-webfontloader');
// Diese Google Font URL durch die tatsächliche Font URL austauschen. Die Font-URL wird Ihnen z.B. durch ein Test-Tool wie sicher 3 angezeigt:
wp_enqueue_style('google-fonts', 'https://fonts.googleapis.com/css?family=Ubuntu');
}
add_action('wp_enqueue_scripts', 'bm_fix_jupiter_fonts', 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment