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