Hello – is there a guide on how to customize/remove the Lato Google font from the Supreme theme?
I have tried:
wp_add_inline_style( 'directory-theme-child-style', $customizer_css );
To the below, but this is not working:
https://co-weddingofficiants-local-v2.rmtnnuj8-liquidwebsites.com/
function sd_enqueue_styles()
{
wp_enqueue_script('supreme', get_stylesheet_directory_uri() . 'https://ayecode.b-cdn.net/assets/js/supreme.min.js', array(), SD_VERSION, true);
wp_enqueue_style('directory-theme-child-style', get_stylesheet_directory_uri().'https://ayecode.b-cdn.net/assets/css/style.css', array('directory-theme-style', 'directory-theme-style-responsive'),SD_VERSION);
wp_dequeue_style( 'directory-theme_google_fonts' );
ob_start();
sd_theme_customize_css();
$customizer_css = ob_get_clean();
wp_add_inline_style( 'directory-theme-child-style', $customizer_css );
}