Quote:
Originally Posted by sarahnk
How do i edit the location.tpl so that the Company name does not show up?
Category : Item
Instead of this:
CompanyName: Category : Item
|
Try:
Code:
{* $Id: location.tpl,v 1.13 2004/05/29 14:21:41 svowl Exp $ *}
{if $location}
<FONT class="NavigationPath">
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }<A href="{$location[position].1}" class="NavigationPath">{/if}
{if not %position.first%}{$location[position].0}{else}HOME{/if}
{if $location[position].1 ne "" }</A>{/if}
{if not %position.last%}>{/if}
{/section}
{/strip}
</FONT>
{/if}
Just remove "HOME" text if you do not want anything there.