Hi guys, I had this in the wrong forum I think so Ill see if anyone here can help :)
I'm using ss 2.4
I have a gallery of 9 images as dataobjects displaying fine in the gallery page.
GalleryPage.ss
[code[
<% if GalleryImages %>
<% control GalleryImages %>
//image here
<% end_control %>
<% end_if %>
I want to show the first 3 images of the gallery on the home page. But...
HomePage.ss
<% control GalleryImages(3) %>
//image here
<% end_control %>
Shows all 9 images instead of limiting it to only 3
I thought this would be straight forward but I've been pulling my hair out trying different things.
Is what I want even possible?