Reply To: pull another custom menu into the mobile menu

Home Forums Support pull another custom menu into the mobile menu Reply To: pull another custom menu into the mobile menu

Home Forums Support pull another custom menu into the mobile menu Reply To: pull another custom menu into the mobile menu

#72614
Tom
Lead Developer
Lead Developer

That plugin won’t work as it’s trying to create a select dropdown from the menus.

You’ll need some custom jQuery for this to work – I have something that may work (untested) – we may need to tweak it.

In GP Hooks, add this to the “wp_footer” area:

<script>
      jQuery(document).ready(function($) {
            $('#menu-sidenav ul').children('li').appendTo('#site-navigation ul');
            $('#menu-sidenav ul').remove();
      });
</script>