• Resolved nathan01gruber

    (@nathan01gruber)


    Hi,
    I installed the plugin and switched it to automatically load all Fonts for the website. 3 Google Fonts sources were found. I also manually clicked on ‘Load fonts’ and it seemed like it had worked perfectly. But still, the website seems to load external fonts and does not pass the online tests (e.g. at https://sicher3.de/google-fonts-checker/ or at https://www.e-recht24.de/google-fonts-scanner)
    I think the offer you want to make is great and needed and I would like to give a good rating for the plugin, but it does not seem to work for me yet.
    Thank you in advance! Best,
    Nathan

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author EverPress

    (@everpress)

    Hi There!

    Looks like this resource is hardcoded:

    https://fonts.googleapis.com/css?family=Merriweather:900|Open+Sans:400,400i,700,700i|Open+Sans+Condensed:700&subset=latin-ext

    Please get in touch with the developer to use wp_enqeue_style for your stylesheet.

    Hope that helps!

    Thread Starter nathan01gruber

    (@nathan01gruber)

    Yeah, that did the job! Now everything works perfectly fine! Thank you so much!
    Best, Nathan

    sfoerg

    (@sfoerg)

    Hello,

    I have the same problem, unfortunately the developer is not available anymore..
    Can you tell me what I can do ?
    https://heckmannhoefe.de/

    Many thanks and warm regards,
    Selina

    Thread Starter nathan01gruber

    (@nathan01gruber)

    Hi Selina,
    Du musst in Deinen Source-Dateien nach “fonts.googleapis.com” suchen, in meinem Fall “https://fonts.googleapis.com/css?family=Merriweather:900|Open+Sans:400,400i,700,700i|Open+Sans+Condensed:700&subset=latin-ext”, und dann den hardcodierten String durch den Befehl wp_enqueue_style() ersetzen, damit der Ladebefehl ‘offiziell’ bei WordPress registriert wird und so durch das Plugin gefunden werden kann.

    Konkret k?nnte das z.B. so aussehen:
    <?php
    wp_enqueue_style(“google-fonts”, “https://fonts.googleapis.com/css?family=Merriweather:900|Open+Sans:400,400i,700,700i|Open+Sans+Condensed:700&subset=latin-ext”);
    ?>
    anstatt
    <link href=”https://fonts.googleapis.com/css?family=Merriweather:900|Open+Sans:400,400i,700,700i|Open+Sans+Condensed:700&subset=latin-ext” rel=”stylesheet”>

    Hello Nathan,

    thank you so much for your input. Took me a while to answer because I got an developer involved and we still couldn′t solve all problems.

    Stylesheet – https://fonts.googleapis.com/css?family=google+sans+text:400&text=%e2%86%90%e2%86%92%e2%86%91%e2%86%93&lang=en
    Stylesheet – https://fonts.googleapis.com/css?family=roboto:300,400,500,700|google+sans:400,500,700|google+sans+text:400&lang=en

    Couldn′t find the CSS datas for theses fontsyet and Google Sans and Google Sans Text are not even existing as google fonts.
    Did you ever came across similar problems?

    warm regards,
    Selina

    Thread Starter nathan01gruber

    (@nathan01gruber)

    Hi Selina, luckily I didn’t face such problems. But if the plugin tells you, that such calls take place (even though they seem unnecessary as the styles do not even exist), I would assume that you somewhere execute these calls on your website. As there are multiple places where one can insert custom code in WordPress, it will probably take a little to find those places, but if you find the snippets where you do something like
    <link href=”https://fonts.googleapis.com/css?family=google+sans+text:400&text=%e2%86%90%e2%86%92%e2%86%91%e2%86%93&lang=en” rel=”stylesheet”> you can probably remove them to solve the issue.
    Best, Nathan

    Thanks a lot, we will try to find them. Your help is much appreciated:)
    Warm regards,
    Selina

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Does seem to load some dependencies but maybe not all’ is closed to new replies.