I’m using a grid field for a photo gallery. It will let me create more that 50 rows in the entry form, but when viewed it shows only 50 rows of data.
The grid has 3 fields per row; image, thumbnail, and caption. The first 2 are for file fields, and the lest is a text input field. The Maximum rows setting is left blank. The template code for displaying the thumbnails and captions with links to the full images is:
{if gallery_images} <div class="photo-gallery"> {gallery_images} <figure> <a href="{gallery_images:image}" target="_blank"><img src="{gallery_images:thumbnail}" alt="{blog_image:caption:attr_safe}"></a> <figcaption>{gallery_images:caption}</figcaption> </figure> {/gallery_images} </div> {/if}
When the template is rendered, it only shows the first 50 pictures. I can’t figure out why. Can anyone help me?
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.