Thankyou, I have been playing with my issue and have gotten it a bit better but still have an issue. If you look at the same link now. On my shopping cart page I have it how I like it with the thumbs and name of group/category underneath the thumb. When you click on the thumb it takes you to the target page which is still "shopping carts" but now shows enlargeable thumbs and a link to the specific detail page.
The other issue is that I know I'm not using the template properly to get my category link to work, This is what I have in my gallery template..
Code: Select all
<div class="gallery">
{if !empty($module_message)}<h4>{$module_message|escape}</h4>{/if}
{if !empty($gallerytitle)}<h3>{$gallerytitle}</h3>{/if}
{if !empty($gallerycomment)}<div class="gallerycomment">{$gallerycomment}</div>{/if}
<div class="pagenavigation">
{if $pages > 1}
<div class="prevpage">{$prevpage}</div>
<div class="nextpage">{$nextpage}</div>
{/if}
{if !$hideparentlink && !empty($parentlink)}<div class="parentlink">{$parentlink}</div>{/if}
{if $pages > 1}<div class="pagelinks">{$pagelinks}</div>{/if}
</div>
{foreach from=$images item=image}
<div class="img">
<div class="title_pagelink"><a href="index.php?page={$image->title}" />{$image->title}</a></div>
{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 href="{$image->file|escape:'url'|replace:'%2F':'/'}" title="{$image->titlename}" rel="lightbox[gallery]"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'}" alt="{$image->titlename}" /></a><br/>
<div class="comment">{$image->comment}</div>
{/if}
</div>
{/foreach}
<div class="galleryclear"> </div>
</div>
and then in my galleries in the image title field I put the page alias
You will see that I used 2 different gallery templates 1 for my main galleries ie; Shopping Carts and 1 for my subgalleries ie; Most Popular etc. What I notice about the menu is for example if I go straight to a page from the drop down menu Shopping Carts/Most Popular my breadcrumbs look good but I have my page title and the gallery title the same. If I go through the gallery links clicking Shopping Carts and then the thumb of Most Popular my breadcrumb stays on Shopping Carts and I see my titles different now so I wonder what is the best way and what am I doing wrong here?
Thankyou, any directions?