Hi, thank you for purchasing our theme
Could you please teach me how to stop loading font from Google?
It needs to change a template file, but when the theme is updated, this file will be overridden.
So I suggest you use child theme, add the code into functions.php of child theme folder(here).
function blocker_front_enqueue_scripts_child(){
if(wp_style_is('blocker-googlefont-alike', 'enqueued')){
wp_dequeue_style('blocker-googlefont-alike');
}
if(wp_style_is('blocker-googlefont-courgette', 'enqueued')){
wp_dequeue_style('blocker-googlefont-courgette');
}
if(wp_style_is('blocker-googlefont-oxygen', 'enqueued')){
wp_dequeue_style('blocker-googlefont-oxygen');
}
}
add_action('wp_enqueue_scripts', 'blocker_front_enqueue_scripts_child',102);
Also, I’m interested in removing the top WordPress menu as well.
try to use plugin: https://wordpress.org/plugins/global-admin-bar-hide-or-remove/
Cheers!
Bwsm – uiueux.com
