Ben
(@creatureweb)
Yes. I too have to disable this plugin to be able to use Visual Composer on the backend.
Also since the last update (7days ago) The plugin has stopped functioning and will not accept changes on its settings page.
HI ,
Yes, My plugin conflict with theme Jquery functionality.
I am going to solve this problem,
Previously i was not cleare the table (“prefix_mylogin”) from the database.
if any one using this new version,install the plugin activate it and deactivate it, then activate the plugin.
Every thing work perfectly.
Note: This is applicable for only previous users.
First time users no need to fallow above discription.
Please let me know still if your facing any issues.
Thanks for your patience and support.
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’, ‘http://code.jquery.com/jquery-latest.min.js’, false);
wp_enqueue_script(‘jquery’);”.
I am sorry for troubling you very much.
Thanks for your support
Thread Starter
filz51
(@filz51)
Thank you for solving this!