Display photo view, not thumbnail?

Robot

Joined: 2003-05-17
Posts: 11
Posted: Tue, 2003-05-27 12:15

I'm sure it's simple, but is there a way to have the random block display the 'photo-view' image in the gallery instead of the thumbnail? By 'photo-view' I mean the image which displays when clicking a thumbnail in a gallery - not the 'full-size' image.

My guess is to modify this line...
.$album->getThumbnailTag($index)

Thanks

 
beckett
beckett's picture

Joined: 2002-08-16
Posts: 3474
Posted: Wed, 2003-05-28 10:32

Yup. You guessed correctly! :)

$album->getPhotoTag($index, FULL_SIZE)

FULL_SIZE is optional. If you leave it out or set it to false, you get the "middle" sized photo. If you set it to true, you get the original, big photo.

-Beckett (

)