I need some help:
i've read a lot about PrettyPhoto Plugin, and i was looking here in the forum, but i haevent found any good answer.
I need to strart a gallery from one single image.
Normally, we have an overview (group) of all images, on click, it opens the container with the gallery.
I want to start the Gallery from a link. The Gallery should start without an overview of all pictures.
How can I do this?
I think i have to change this code:
Code: Select all
{foreach from=$images item=image}
<div class="img">
{if $image->isdir}
<a href="{$image->file}" title="{$image->titlename}"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'}" alt="{$image->titlename}" /></a><br />
{$image->titlename}
{else}
<a class="group" href="{$image->file|escape:'url'|replace:'%2F':'/'}" title="{$image->comment}" rel="prettyPhoto[{$galleryid}]"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'}" alt="{$image->titlename}" /></a>
{/if}
</div>
{/foreach}
Thanks for helping...
Hinti