• Resolved bstras21

    (@bstras21)


    Is it possible to use a local copy of font awesome to avoid CSS above the fold issues in PageSpeed? Here is one of the issues I am trying to remedy:

    Eliminate render-blocking JavaScript and CSS in above-the-fold content
    Your page has 1 blocking CSS resources. This causes a delay in rendering your page.
    Approximately 11% of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.

    Optimize CSS Delivery of the following:

    https://cdn.jsdelivr.net/…4.7.0/css/font-awesome.min.css?ver=4.7.0

    • This topic was modified 7 years, 4 months ago by bstras21.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bstras21

    (@bstras21)

    I think I found it:

    
    function bfa_callback( $force_fallback ) {
        $force_fallback = true;
        return $force_fallback;
    }
    add_filter( 'bfa_force_fallback', 'bfa_callback' );
    Plugin Author Mickey Kay

    (@mcguive7)

    That’s the one!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is it possibe to disable CDN’ is closed to new replies.