X Mobile menu in desktop stopped working after X update

Hi there,

I was happily enjoying hamburger menu also for desktop but sadly ceased after installing 7.2.3…

Some css tweeking delivers no collapsible expanded menu in desktop (in mobile works as expected) or not showing menu items by some other css attempts.

No more ideas by my side… Would you kindly hel me?

X THEME: 7.2.3
WP: 5.4.1
MYSQL: 5.6.43
PHP: 7.3.6
FIREFOX: 76.0.1

Thanks,

Luis

Hello Luis,

Thanks for posting in! I have checked your site and there is a JS error on the page. It is coming from your custom JS code. You have added this:

jQuery( document ).ready(function( $ ) {
$("footer.x-colophon.top .x-column.x-md.x-1-2:first-child").toggleClass('x-1-2:first-child x-1-3');
$("footer.x-colophon.top .x-column.x-md.x-1-2:last-child").toggleClass('x-1-2:last-child x-2-3');
});
<script>
$( function() {
$( document ).tooltip();
} );
</script>

Please be advised that you are only allowed to insert JS code. You are not allowed to insert JS scripts enclosed with <script></script>. Please have your code be updated and use this instead:

jQuery( document ).ready(function( $ ) {
  $("footer.x-colophon.top .x-column.x-md.x-1-2:first-child").toggleClass('x-1-2:first-child x-1-3');
  $("footer.x-colophon.top .x-column.x-md.x-1-2:last-child").toggleClass('x-1-2:last-child x-2-3');
});

$( function() {
  $( document ).tooltip();
} );

And since you have installed WP Fastest Cache plugin, kindly clear all the plugin caches first before testing your site again. If nothing is helping, provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

To know how to create a secure note, please check this out: https://theme.co/docs/getting-support

Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.