I use MODx Revolution ver.2.20 with Gallery module ver.1.4.0. So, I need to get the number of image in a folder. I google it, but no find work solution.

How can I get it? Thanks

Ok, this is solution.

Snippet call

[[!GalleryAlbums? &parent=`5` &showAll=`1` &sort=`rank` &dir=`ASC` &limit=`50` &rowTpl=`b-top-img`]]

b-top-img snippet

      <!-- p-cover -->
      <div class="p-cover [[+id]]">
        [[!Gallery? &album=`[[+id]]` &thumbWidth=`300px` &thumbHeight=`300px` &thumbTpl=`b-middle-img`]]
      </div>
      <!-- /p-cover -->   

b-middle-img chunk

      <div class="p"><img src="[[+thumbnail]]" alt="[[+name]]" /></div> 
link|improve this question
feedback

1 Answer

If you are familiar with PHP you can create your own snippet from this example — http://rtfm.modx.com/display/ADDON/Gallery.GalleryItem.GalleryItemPagination

link|improve this answer
Thanks for advice, but I found more simple solution. I will write about this later ) – Nixon Feb 8 at 11:12
can you write it now? – amrok Apr 17 at 6:36
I post solution. I think is simple to understand. – Nixon Apr 18 at 8:43
I see you have limit albums by 50 and then show all thumbnails for album? Where is how to get the number of images in a folder? – amrok Apr 18 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.