Disables Google Fonts

Disables Google Fonts loaded by Elementor to enhance page load speed.

PHP
/**
 * Snippet Name:     Disables Google Fonts
 * Snippet Author:   coding-bunny.com
 * Description:      Disables Google Fonts loaded by Elementor to enhance page load speed.
 */

if ( defined( 'ELEMENTOR_VERSION' ) ) {
    add_filter( 'elementor/frontend/print_google_fonts', 'cb_remove_google_fonts' );
}

/**
 * Callback function to remove Google Fonts from Elementor.
 *
 * @return bool
 */
function cb_remove_google_fonts() {
    return false;
}

How To Implement This Solution?

Leave a Reply

Your email address will not be published. Required fields are marked *

My Agile Privacy
This site uses technical and profiling cookies. You can accept, decline or customize cookies by pressing the desired buttons. By closing this policy you will continue without accepting.

Need help?

Choose one of the following options:

Powered by CodingBunny