Problem to set featherbox gallery

Hi all,

I’m making a portfolio/blog site.I want to make a lightbox gallery for each project page.
For now, I insalled the featherbox plugin, activated it and enabled “gallery” option.
When I click on an image the box opens, the previus and next arrows apear but dont work.
I think I’m missing the way to make a “gallery” group from single images but I can’t figure how to make it.

Pit

Hmm. might be a bug. Anyway will need further investigation. Can you create an issue here: https://github.com/getgrav/grav-plugin-featherlight/issues ?

I’m still trying without success.
Do you think I have to add another parameter? Here is the code for the images in my item.md (I’m using the twentyfifteen theme):

![Sample Image](photo3.jpg?lightbox=400,400&resize=150,150)
![Sample Image](photo4a.jpg?lightbox=400,400&resize=150,150)

I just tryed to put the code in the twig and the result is the same. All the images are charged in the page but the links don’t work in the lightbox :

<div style="text-align:center; width: 100%; margin-left: auto; margin-right: auto; padding-bottom: 30px;">
   {% for image in page.media.images|sort %}
      {{ image.lightbox(400,400).cropResize(150,150).html() }}   
   {% endfor %}
</div>