/**
* 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;
}
Disables Google Fonts
Disables Google Fonts loaded by Elementor to enhance page load speed.