album summary

tcjay

Joined: 2003-02-10
Posts: 42
Posted: Thu, 2009-07-02 21:11

Gallery 2.3
Matrix Theme

I would like to place the album 'summary' in the grey area below the the name of the album at the top of the page that shows all of the children, images in that album.

I think it has something to do with this code:

<div class="gbBlock gcBackground2 gbNavigator">
{g->block type="core.ItemInfo"
item=$child
showDate=false
showOwner=$showOwner
showSize=false
showViewCount=false
showSummaries=true
class="giInfo"}

</div>

But I am not sure. TIA Tom :)
http://www.tillitomas.com

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Thu, 2009-07-02 21:55

You should be able to add:
{$theme.item.summary|markup|entitytruncate:256} to the same place as the discription of the album is rendered
{$theme.item.description|markup}
or add descriptions to your albums.

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
tcjay

Joined: 2003-02-10
Posts: 42
Posted: Fri, 2009-07-03 16:26

Thanks.