I have a custom field called prodimages in my weblog.
I’ve set the field type to File. I’ve published a page to my weblog and added 4 images.
I can loop over my images using:
{prodimages}
{file_name}
{/prodimages}
But how can i keep track of the row index / counter?
Basically I want to do something like this:
{prodimages}
{if row_count == 1}
{file_name}
{/if}
{/prodimages}
Sean