View Single Post
  #2  
Old 07-23-2007, 02:49 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: How to change label of home link in bread crumbs

If you use Webmaster Mode - you'll discover that the breadcrumbs are made by the template file, /skin1/location.tpl

From there, you may want to edit location.tpl

I found some code in the fourm for alternate breadcrumbs...

My location.tpl now looks like this -- yours may or may not work with this.

Code:
{* $Id: location.tpl,v 1.14.2.2 2007/06/18 11:42:03 max Exp $ *} {if $location} {* {strip} *} <span class="NavigationPath"> <a href="/">Home</a>&nbsp;&rarr;&nbsp; {section name=position loop=$location start=1} {if $location[position].1 ne "" }<a href="{$location[position].1|amp}">{/if} {$location[position].0} {if $location[position].1 ne "" }</a>{/if} {if not %position.last%}&nbsp;&rarr;&nbsp;{/if} {/section} </span> {* {/strip} *} {/if}
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote