Forums / Setup & design / Breadcrumb for sitemap and search function

Breadcrumb for sitemap and search function

Author Message

ttkt ttkt

Wednesday 07 June 2006 11:29:12 pm

Hi,

I have a link called Site Map in http://redsingteach.crpp.nie.edu.sg/index.php/Singteach/content/view/sitemap

I would like the breadcrumb to show Site Map when i clicked on the hyperlink.
Currently the breadcrumb is showing HOME >
I would like the breadcrumb to show HOME > Site Map

The same goes to Search. I would like the breadcrumb to show Home > Search when i am doing a search. Currently the breadcrumb is showing HOME > kernel (4)

Please advise, thanks.

Marcin Drozd

Thursday 08 June 2006 12:52:02 am

Hi
try with in your path.tpl file:

{if $module_result.content_info.viewmode|eq('sitemap') }
    HOME > Site Map
{else}
    original code from path.tpl
{/if}

or

{if $module_result.uri|eq('/Singteach/content/view/sitemap') }
    HOME > Site Map
{else}
    original code from path.tpl
{/if}

http://ez-publish.pl

ttkt ttkt

Tuesday 13 June 2006 11:10:41 pm

Thanks!