• Using the theme “Response” … the plugin seems to work ok, except for the removal of the “hidden” class from the ‘securehiddenlogin’ element. I’m not sure why this doesn’t happen, and I see no other errors which would indicate a conflict. Because the class=”hidden” is never removed, the login form never appears, but it is there in the generated code.

    I added some extra javascript to counter this, which fixes the issue, but am not sure what the underlying cause of this is.

    Here is my script in case it helps anyone else. This is for CTRL + L or ALT + L.

    jQuery(document).keydown(function(e){
    if(e.ctrlKey && e.keyCode == 76 || e.altKey && e.keyCode == 76){
    jQuery(“#securehiddenlogin”).removeClass(“hidden”);
    }
    })

    https://www.ads-software.com/plugins/secure-hidden-login/

  • The topic ‘CTRL / ALT key not trigger removal of "hidden" class’ is closed to new replies.