I would like to make a category page with the list of my items with the catalog module.
On this list I would like to display some attribute of the items, other than image, link or title.
I've seen on my catalog template page that I can display them with $items[].attrname so I tried this out:
Code: Select all
{section name=numloop loop=$items}
<tr>
<td><a href="{$items[numloop].link}">{$items[numloop].title}</a></td>
<td>$items[numloop].firstname</td>
<td>$items[numloop].age</td>
<td>$items[numloop].nationality</td>
</tr>
{/section}
Do you have any idea how I can work this out ?