Hi all
I have a problem here. I created a gallery with 240 pictures. Created an images field with no maximum amount (0). Unfortunately, only 98 of the 240 images show on the website. Any idea what I possibly could have done wrong? Thanks for your help!
<?php
foreach ($page->images as $image) {
$options = array(
'quality' => 90,
'upscaling' => false
);
$thumb = $image->size(250, 250, $options);
?>
<div class="col-xl-2 col-lg-3 col-md-4 col-sm-6 col-6 foto">
<a href="<?= $image->url ?>" data-lightbox="lightbox" >
<img src="<?= $thumb->url ?>" alt="" >
</a>
</div>
<?php } ?>