I am using the keyboard plugin here http://www.zenphoto.org/news/keyboard-plugin I installed and activated and I tried testing but it doesn't work. I can't use the left & right keyboard to navigate images.
Is there another plugin that can navigate images using the keyboard?
No, all known are listed there. I don't know that one but it might require adjustments depending on the theme.
You can try this jQuery javascript code on a normal theme's image.php:
`
$(function() {
$(document).keyup(function (event) {
if (event.keyCode == 37) {
// Links
window.location.href="";
} else if (event.keyCode == 39) {
// Rechts
window.location.href="";
}
});
});
`
The keyboard-plugin worked fine for me right away ... for images (i.e. in the image.php page). But I was surprised it didn't also handle left/right arrows in the album.php page (to navigate between albums). I got that working by making a minor change to the plugin:
if ($_zp_gallery_page = 'album.php') { var nextURL=""; var prevURL=""; } if ($_zp_gallery_page = 'image.php') { var nextURL=""; var prevURL=""; }
Sure, feel free to include it.