• I used a uikit3 framework (https://github.com/uikit/uikit) based plugin element pack. But don’t understand why it’s conflict with your fullscreen menus > sub menu toggle effect. https://prntscr.com/j9stlc

    When that element pack activated your full screen menu toggle not expand but i can’t find any error message and can’t find out where the problem exactly!

    you are the theme author so i hope you can find out where the problem actually.

    • This topic was modified 8 years, 1 month ago by bdthemes. Reason: screenshot added

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author oceanwp

    (@oceanwp)

    Hello, I see a JS error in your console, you will need to contact the plugin author.

    Thread Starter bdthemes

    (@bdthemes)

    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/

    Theme Author oceanwp

    (@oceanwp)

    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.

    Thread Starter bdthemes

    (@bdthemes)

    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.

    Theme Author oceanwp

    (@oceanwp)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Conflict with UIKit 3 Framework’ is closed to new replies.