I want to change the shortcut ctrl+alt+l (fast access to registration form). What should i do?
Thanks!
I want to change the shortcut ctrl+alt+l (fast access to registration form). What should i do?
Thanks!
You'd have to open the theme js file you are using (default.js, osx.js, or your custom one) and change the following:
keydown: function (e) {
if (e.altKey && e.ctrlKey && e.keyCode === 76) {
$('.simplemodal-login').trigger('click.simplemodal-login');
}
},
You didn't say what you would want the shortcut to be, so you'd have to determine what would go in the if() condition.
Thank you so much!
Your post helped me!
I changed the number of "keycode"! =)
This topic has been closed to new replies.