however, when i installed this same plugin in osuda.com.my the mobile menu is showing “osuda.com.my/#”
please help
]]>Link: https://www.rusticacresfurniture.com/
Issue:
When using Mobile Menu, normal menu bar appears with the hamburger drop down icon. Clicking on that menu drop down leads to an additional drop down with “Menu” and then another hamburger drop down icon. Clicking on this second drop down shows the Max Mega Menu as it should.
I would like to eliminate the intermediate button click, as this obviously isn’t the intended behavior.
]]>similar problem to this one
Mobile menu isn’t collapsing after clicking anything on the list. Page is scrolling as it should.
Tried
(function($){
$(window).on("load",function(){
$(".menu-item").on("click","a._mPS2id-h",function(){
$(this).blur();
});
});
})(jQuery);
jQuery( document ).ready( function( $ ) {
$( document ).on( 'click', '.main-nav li > a:first-child', function( e ) {
var mobile = $( '.menu-toggle' );
if ( mobile.is( ':visible' ) ) {
$( '.menu-toggle').closest( '.main-navigation' ).removeClass( 'toggled' );
$( '.menu-toggle').closest( '.main-navigation' ).attr( 'aria-expanded', $( '.menu-toggle').closest( '.main-navigation' ).attr( 'aria-expanded' ) === 'true' ? 'false' : 'true' );
$( '.menu-toggle').removeClass( 'toggled' );
$( '.menu-toggle').children( 'i' ).addClass( 'fa-bars' ).removeClass( 'fa-close' );
$( '.menu-toggle').attr( 'aria-expanded', $( this ).attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
}
and few more scripts. No results.
]]>