Home Forums Cordero Pro Remove google-fonts Reply To: Remove google-fonts

#12244
Andy
Keymaster

Add this php code to your child theme’s functions.php:

function cordero_fonts_url() {
	return;
}

function cordero_editor_fonts_url() {
	return;
}

The code will make these two functions return nothing, so disabling the Google fonts.

The first function is for the front end of the website, and the second function is for the page/post editor if you also want to remove Google fonts from there.

  • This reply was modified 4 years, 2 months ago by Andy. Reason: typo corrected