• Resolved marinelam

    (@marinelam)


    Hi,

    Could you show me how can I disable/remove google fonts from my theme?
    And one more thing… The menu button on the homepage (mobile version) is not working. How can I resolve this issue?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @marinelam,

    Thanks for getting in touch about this!

    The theme doesn’t have a built in option for disabling Google fonts, but if you’re using a child theme, you can add a little snippet of code to your child functions.php file, and it should do the trick:

    add_action('wp_enqueue_scripts', function() {
    	wp_dequeue_style('kale-fonts');
    }, 11);

    On the mobile menu, it looks like this is being caused by some errors from Ezoic- it’s breaking the javascript on the page and preventing some features (like the mobile menu) from functioning correctly.

    Hope this helps!

    Thread Starter marinelam

    (@marinelam)

    Thank you so much!

    Sure thing, if you need anything else just let us know! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable and Remove Google Fonts’ is closed to new replies.