I’m trying to set up a gallery that lists all of the category names and then all the thumbnails for that category underneath in a row(s). I don’t need to display any of the other information such as date or title.
I’ve managed to strip out all the excess code from the gallery index page to just display the categories but I don’t know how to integrate the thumbnails under each category or if it’s even possible.
Here is the code that displays the Categories - so far so good:
{exp:gallery:categories gallery="{gallery_name}"}
{category_row}
{row_start}<div>{/row_start}
{row}
<a href="http://{category_path=personal/category}">{category}</a>
{category_description}
{/row}
{row_end}</div>{/row_end}
{/category_row}
{/exp:gallery:categories}But how can I display the thumbs from each category underneath? I’ve tried embedding the exp:gallery:entries info from the categories template withing the categories code but that doesn’t work. Can you even have a tag set within an different tag set?
Ultimately, I’m looking for what you see in the screenshot - eventually with lightbox functionality. Any help or advice is appreciated, thanks.