Hello, I see a JS error in your console, you will need to contact the plugin author.
Error actually come from from your js, please look here: http://prntscr.com/ja9a3z
when i deactivated ocean extra (http://prntscr.com/ja9air) the javascript error gone but menu toggle problem still there 🙁
please check now problem still there: https://rti.x3.rs/
Hi, for the JS error, have you tried to go on Theme Panel > Scripts & Styles and click Save Changes?
For the issue in the menu, I can do nothing, I use a very simple JS code to open it and close it, if there is a conflict with another plugin, you will need to contact the author to ask him why there is this conflict.
uikit framework author don’t help because problem happen in your full screen menu. if you take a look on your toggle script so you understand why it’s happening?
Please help me.
Hi, it is a very simple code, I really don’t know why there this problem, the code is this:
$j( '#full-screen-menu #site-navigation ul > li.dropdown > a > .text-wrap > span.nav-arrow, #full-screen-menu #site-navigation ul > li.dropdown > a[href="#"]' ).on( 'tap click', function() {
if ( $j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).is( ':visible' ) ) {
$j( this ).closest( 'li.dropdown' ).removeClass( 'open-sub' );
$j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).slideUp( 200 );
} else {
$j( this ).closest( 'li.dropdown' ).addClass( 'open-sub' );
$j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).slideDown( 200 );
}
return false;
} );
You can show this to the plugin author and ask him what is wrong, because I really don’t see.