Show image caption in Siriux Theme ?

adam2003w

Joined: 2004-11-19
Posts: 10
Posted: Mon, 2007-07-09 22:30

Show image caption in Siriux Theme ?

Anyone know the code to show the image caption under each image in the Siriux theme. By default I don't see them.

site [url]www.paradigmprint.com[/url]

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2007-07-10 00:34

The long discription is shown on the photo page.
Did you want to add the summary to the thumbnails?

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
adam2003w

Joined: 2004-11-19
Posts: 10
Posted: Thu, 2007-07-12 21:11

Yeah, that's it. I want to show the caption on the thumbnails page.

[url]www.paradigmprint.com[/url]

 
bigTrainG
bigTrainG's picture

Joined: 2002-12-26
Posts: 33
Posted: Mon, 2008-03-03 06:51

I am interested in haveing an answer to the above response.

I want the Photo Caption that displays as a "header" on the Photo page, to display under the thumbnail-photo in album listing.

www.wayneandsally.com/gallery
(using sirux theme)

Thanks!

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Mon, 2008-03-03 20:16

album.tpl

	    {g->image item=$child image=$child.thumbnail}
	  {else}
	    {g->text text="no thumbnail"}
	  {/if}
	</a>{$child.title|markup}
      </div>
    {/if}
  {/foreach}

or if you want the summary:

	    {g->image item=$child image=$child.thumbnail}
	  {else}
	    {g->text text="no thumbnail"}
	  {/if}
	</a>{$child.summary|markup}
      </div>
    {/if}
  {/foreach}

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
dalbeck

Joined: 2008-03-03
Posts: 7
Posted: Tue, 2008-03-04 02:39

I tried adding the above code and it made my page blank. Is there a certain section in the file it should be at?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2008-03-04 02:47

What editor are you using? I bet it adds extra stuff. Use notepad or similar editor. Only add the bold.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
dalbeck

Joined: 2008-03-03
Posts: 7
Posted: Tue, 2008-03-04 03:12

I am using dreamweaver but I only copied the code in the gray box.

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2008-03-04 03:44
Quote:
I only copied the code in the gray box.

Only add the bold code. the rest is for reference.

You will find dreamweaver will be a issue as well.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
dalbeck

Joined: 2008-03-03
Posts: 7
Posted: Tue, 2008-03-04 04:15

works, thanks! I couldnt really see the bolded code there so I added the whole thing.