• Resolved Massound

    (@massound)


    Hi there,

    First of all, I would like to thank for nice plugin.

    I just download and install it, but I find the plugin seem to conflict with the WordPress 4.1 backend menu. The WordPress can’t open when hover. It become normal when I deactivate the plugin.

    Can you please fix it on the next upcoming update?

    Thank you.

    Best,

    Massound

    https://www.ads-software.com/plugins/my-loginlogout/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author nagarjunsonti

    (@nagarjunsonti)

    Hi Dear,

    Plugin getting conflict with the theme, not for the wordpress version.

    I am going to fix this issue.

    Thanks for your time and support.

    Plugin Author nagarjunsonti

    (@nagarjunsonti)

    Hi All,
    I fixed the bug, Please download it, otherwise copy and past the code.

    Change the entire code in myjs.js file with

    “var myloginlogout = jQuery.noConflict();
    myloginlogout(document).ready(function(){

    myloginlogout(“#show_custom_login_button”).click(function(){
    myloginlogout( “#login-dropdown” ).hide(1000);
    myloginlogout( “#custom_loginid” ).show(1000);
    myloginlogout( “#show_custom_login_button” ).hide(1000);

    });

    myloginlogout(“#hide_custom_login_button”).click(function(){
    myloginlogout( “#custom_loginid” ).hide( 1000);
    myloginlogout( “#custom_login_url” ).val(“”);
    myloginlogout( “#login-dropdown” ).show(1000);
    myloginlogout( “#show_custom_login_button” ).show(1000);//button

    });
    });

    “.

    And

    Replace the 2 lines of code in loginlogout.php file( Line number:131 and 132)

    “wp_register_script(‘jquery-2.0.2-min-js’, plugins_url(‘/js/jquery-2.0.2-min.js’, __FILE__), array(‘jquery’),’2.0.2′, true);
    wp_enqueue_script(‘jquery-2.0.2-min-js’);”

    With

    “wp_register_script(‘jquery’, ‘https://code.jquery.com/jquery-latest.min.js’, false);
    wp_enqueue_script(‘jquery’);”.

    I am sorry for troubling you very much.
    Thanks for your support

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with the WordPress 4.1 backend menu’ is closed to new replies.