Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1472168

    Hey there,
    the title says it all. When I click on the images in my horizontal gallery and they open in a lightbox, I would like these images to appear in full-size, not a cropped version (I believe it’s “large”).

    There’s an older thread with a post and solution for exactly this problem, only for a different gallery type and I don’t know how to make this code work for the horizontal gallery.

    Thank you!

    #1472222

    Hey tixxpff,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to change the lightbox thumbnail size of the horizontal gallery:

    function avf_alb_lightbox_image_size_mod($size) {
      return "full";
    }
    add_filter('avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 1);
    

    Best regards,
    Ismael

    #1472578

    Perfect, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.