Page 1 of 1

Remove breadcerumbs from homepage only [solved]

Posted: Thu Oct 25, 2007 1:59 pm
by R0BINH00D
I'd think it was something like this:

{if page->title != hompage}

        {breadcrumbs starttext='You are here' root='Home' delimiter='»'}

{/if}

Any suggestions?

Thanks

Dan

Re: Remove breadcerumbs from homepage only

Posted: Thu Oct 25, 2007 2:14 pm
by Pierre M.
Hello,

I'd have it done another way : use another template for the homepage as you want your homepage look differently. Its template could be the copy of another template without the {breadcrumbs} tag.

Pierre M.

Re: Remove breadcerumbs from homepage only

Posted: Thu Oct 25, 2007 2:23 pm
by RonnyK
Dan,

what about:
  {* Start Breadcrumbs *}
  {if $page_alias neq 'homepage'}
 
        {breadcrumbs starttext='You are here' root='Home' delimiter='»'}
 
 
  {/if}
  {* End Breadcrumbs *}
Ronny

Re: Remove breadcerumbs from homepage only

Posted: Thu Oct 25, 2007 3:39 pm
by R0BINH00D
Perfect!

Such a simple piece of code - but I can use it to show different menus on different pages aswell.

Much appreciated