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

"Please Note:
  • At the specific request of Ibexa we are changing this projects name to "Exponential" or "Exponential (CMS)" effective as of August, 11th 2025.
  • This project is not associated with the original eZ Publish software or its original developer, eZ Systems or Ibexa".

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!