Navigate Slideshow with Keyboard Arrow Keys?

Is there a way of doing this? Anyone tried it?

Best,

C x

I think, only way to do it now, add custom javascript code. :pensive:

I agree with you. It will be good if there is any left right arrow keys options for slider. :tada:
When I searced, i saw there is an another wish list topic about this :

1 Like

Hi, try add this into your custom code. Let me know if this works

<script>
$(document).on('keyup', function(event) {
   if (event.which === 37) {
      $('.w-slider-arrow-left').trigger('tap');
   } else if (event.which === 39) {
      $('.w-slider-arrow-right').trigger('tap');
   }
});
</script>

Your slider needs to have arrows left/right. If you want to hide them, you can use opacity