Rating: 5 stars
The Plugin does not get updated anymore, but still works as it should be.
Really really good Plugin. There is nothing else like this!
Rating: 1 star
It made two WP5.2 with WooCommerce installs so slow they became unusable.
]]>Rating: 4 stars
Unlike the Disable Google Fonts plugin, this one worked almost perfectly for me. (I’m using the econature theme from cmsmasters.)
The result was that my fonts still look the same as before and the links to fonts.googleapis.com no longer appear in my html code.
However, I noticed that this link remained in my html:
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
To get rid of that, I just added this to my functions.php file:
/*
* Remove these lines from our html:
* <link rel='dns-prefetch' href='//fonts.googleapis.com' />
* <link rel='dns-prefetch' href='//s.w.org' />
*/
remove_action( 'wp_head', 'wp_resource_hints', 2 );
NB – This also removed this code from my html:
<link rel='dns-prefetch' href='//s.w.org' />
Rating: 5 stars
Hot diggity damn this plugin works!!
I have spent – scratch that – WASTED so many hours trying to locate the source of and remove the google fonts it’s sickening.
I’ve tried every thing I could find to do it manually . . . and none of them worked.
I’ve lost count of how many plugins I’ve tried . . . and none of them worked.
Then, quite by accident, I finally came across your plugin . . . and dammit it worked INSTANTLY!!
I’d hug and kiss you if I could! ??
Thank you so much for a solution that actually works!!
LL
]]>Rating: 5 stars
Thanks a lot!
]]>Rating: 5 stars
Need to have because of the new GDPDR regulations (EU-DSGVO).
Removes Google Fonts even from hard-coded plugins. Great!
]]>Rating: 5 stars
This plugin works fine with ElegantTheme DIVI and EXTRA.
I hope,the development continues
]]>Rating: 5 stars
No more errors message on page speed. Showed improvement on GTMETRIX and Pingdom Tools
]]>Rating: 5 stars
I appreciate your efforts for this plugin.
Would you possible to see any upcoming updates?
Thanks & Regards,
Gulshan
Rating: 5 stars
Work for me. Nice plugin.
]]>Rating: 5 stars
The only google font removers plugin that works.
But it would be better also remove call to fonts.googleapis.com (<link
rel=’dns-prefetch’ href=’//fonts.googleapis.com’ />)
Rating: 5 stars
This plugin is great and saves a lot of time having to manually edit a commercial theme which may get over-written the moment there is an update.
By stopping all references to google fonts allows me to host my own fonts and there-fore keep all data flowing to my site alone. As a hyper-paranoid blogger that hates data of my readers being shared removing google font references is a savior.
It should be noted though: This plugin is not for the novice WordPress user as it does have the potential of wrecking a good typographic theme.
]]>Rating: 3 stars
I am creating a big corporate page, need to remove some plugin-added google font.
After installing this plugin, my page went super slow.
3 stars, because it could be good for pages with less code.
]]>Rating: 5 stars
I try another plugin like Disable Google Fonts but when I do speed test on toolspingdom I still see google font api is still on my website. Then I switched to this plugin, I never see it again! This one is work! Thank you very much.
]]>Rating: 5 stars
So far, I’ve used this plugin on 5 of my sites, and 3 client sites. ALL 8 sped up significantly, with no issues whatsoever related to this plugin. I’ve even recommended it to others on FB. Thanks so much for recognizing that Google Fonts were a major issue with slow sites, and coming up with a SIMPLE solution that ACTUALLY WORKS. #YouRcok Bruno Xu!!! (BTW, I rarely EVER leave reviews.)
]]>Rating: 5 stars
I couldn’t get my page speed above 78\100 due to Google font issues. I installed and activated this plugin…
BAM!!! Instantly, 99\100 mobile, 100\100 desktop.
Where do I donate?
]]>Rating: 5 stars
This was the last piece of the puzzle towards getting a 100% score on google pagespeed.##Thanks!
]]>Rating: 4 stars
I tried using this with my (mostly unmodified) child theme of Attitude 1.5 with no effect. It didn’t appear to cause any problems, but it also didn’t work; the code to call the Google font API still loads in the header and the fonts still load.
I don’t know if it matters that Attitude loads the font from a separate functions.php file in a /library/ subdirectory. It might — I also tried dequeuing the fonts from the child theme’s functions.php, which had no effect either.
]]>Rating: 5 stars
Another plugin wasn’t doing it for me / my theme.
After activating “Remove Google Fonts References” my PageSpeed performance score went up by 5 points ??
Thanks!
Rating: 5 stars
Solved my problems. Thank you
]]>Rating: 5 stars
This plugin is great. My site was loading slowly with the dreaded “waiting for fonts.googleapis.com” message in the status bar (Chrome), and this plugin fixed the problem.
I’m in Australia, site hosted in the USA, so I have no idea why google fonts were causing slow load times, but I’m happy to be done with the problem.
]]>Rating: 5 stars
Pagespeed kept dinging my site for google fonts render blocking. This plug-in was the only thing that removed that problem. Now my pagespeed score has finally hit the 90s!
Thanks!
]]>Rating: 5 stars
Thanks Mr Xu!
This plugin is very good for making a website in China!
Now my website loads with no VPN… Niu Bi!
Cheers! ??
]]>Rating: 5 stars
Simple and works perfectly. I activated it and imediatelly my mobile site was back to normal fonts.
]]>Rating: 1 star
El servidor se bloquea
]]>Rating: 5 stars
hi ,I found it is very slow because of loading maps.google.com , how to disable google maps?
]]>Rating: 5 stars
awesome! very very fast!
]]>Rating: 5 stars
Sorry, can’t add disable google maps function to this plugin, because it’s used to disable google fonts only. But you can add some code into functions.php in theme directory to disable google maps:
add_action(“wp_loaded”, ‘remove_google_maps_ob_start’);
function remove_google_maps_ob_start(){
ob_start(‘remove_google_maps_ob_end’);
}
function remove_google_maps_ob_end($html){
$html = preg_replace(‘/<script[^<>]*\/\/maps.(googleapis|google|gstatic).com\/[^<>]*><\/script>/i’, ”, $html);
return $html;
}