Hi Stefan,
I don’t speak German, but I understand it. I’ll reply in English, if you don’t mind. ??
There’s a couple of things going on at your website:
- One Google Fonts API request also requests system fonts, which is weird:
https://fonts.googleapis.com/css?family=Arial%2C+Helvetica%2C+sans-serif%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%7CArial%2C+Helvetica%2C+sans-serif%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%7CLora%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%7CPoppins%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%7CPoppins%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%7CRoboto%3A400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic&subset=latin%2Ccyrillic%2Cgreek%2Cvietnamese&ver=6.0.1
Arial and Helvetica are in there, which don’t have to be requested. And then Lora, Poppins and Roboto. However, I tested this request and it was properly fetched by OMGF. So, this shouldn’t be an issue for the free version.
- Another request is inserted asynchronously:
https://fonts.googleapis.com/css?family=Roboto:400%7CPoppins:400%7CAnonymous+Pro:400%7CLora:400&subset=latin
To block this request, you’ll need to enable the Pro feature, called Remove Async Google Fonts
- You’re using Recaptcha, which is loaded in an
iframe
. Any external source that’s loaded inside an iframe
is unreachable for us to modify. So these Google Fonts can’t be processed. On a different note: I’d suggest using a GDPR-friendly alternative for Recaptcha. If Google Fonts is a GDPR issue, it won’t be long before Recaptcha will be issue ??
Hope this clarifies things. Let me know if you need anything else!