Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1329745

    Hello,

    perhaps you can help me.
    I build several Websites, and with each I have this one specific Issue.
    Google Page Speed check shows me, that there is a big problem with
    “Ressourcen beseitigen, die das Rendering blockieren”
    “Ressourcen blockieren den First Paint Ihrer Seite. Versuchen Sie, wichtiges JS und wichtige CSS inline anzugeben und alle nicht kritischen JS und Stile aufzuschieben.”

    I activated all important Performace settings in Enfold, installed a Cache Plugin and added this Code to “functions.php”:

    function remove_head_scripts() {
        remove_action(‚wp_head‘, ‚wp_print_scripts‘);
        remove_action(‚wp_head‘, ‚wp_print_head_scripts‘, 9);
        remove_action(‚wp_head‘, ‚wp_enqueue_scripts‘, 1);
        add_action(‚wp_footer‘, ‚wp_print_scripts‘, 5);
        add_action(‚wp_footer‘, ‚wp_enqueue_scripts‘, 5);
        add_action(‚wp_footer‘, ‚wp_print_head_scripts‘, 5);
    }
    add_action(‚wp_enqueue_scripts‘, ‚remove_head_scripts‘);
    
    remove_action(‚wp_head‘, ‚print_emoji_detection_script‘, 7);
    remove_action(‚wp_print_styles‘, ‚print_emoji_styles‘ );

    Why does the mobile Website still performs so bad?

    Cheers
    Monika

    #1329879

    Hey Monika,

    Thank you for the inquiry.

    Site optimization requires more than enabling a setting or adding a snippet. You will have to perform additional optimization tasks, which might require the help of a third party developer. If you want to dive in to it and to help you get started with site optimization, please check the following articles.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    #1329910

    Thank you!

    #1329928

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.