it does show location at home & product page but not on category pages.
any help would be appreciated.
home.tpl
{* $Id: home.tpl,v 1.67.2.10 2005/10/31 11:36:14 max Exp $ *}
{if $printable ne ''}
{include file="customer/home_printable.tpl"}
{else}
{config_load file="$skin_config"}
<HTML>
<HEAD>
<TITLE>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{/if}
</TITLE>
{ include file="meta.tpl" }
<LINK rel="stylesheet" href="css/styler.css">
</HEAD>
<BODY leftmargin="0" topmargin="0" rightmargin="0" bottomargin="0" marginwidth="0" marginheight="0"{if $body_onload ne ''} onload="{$body_onload}"{/if}>
{ include file="customer/top_menu.tpl" }
<TABLE border="0" width="779" cellpadding="0" cellspacing="0" align="center">
<TR>
<TD width="162" valign="top">
{ include file="customer/categories.tpl" }
</TD>
<TD valign="top" width="460">
{include file="location.tpl"}
{include file="dialog_message.tpl"}
{include file="customer/home_main.tpl"}
</TD>
<TD width="155" valign="top">
{ include file="customer/main/minicart.tpl" }
</TD>
</TR>
</TABLE>
{ include file="footer.tpl" }
</BODY>
</HTML>
{/if}
Location.tpl
{* $Id: location.tpl,v 1.13 2004/05/29 14:21:41 svowl Exp $ *}
{if $location}
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }<A href="{$location[position].1}" class="NavigationPath">{/if}
{$location[position].0}
{if $location[position].1 ne "" }</A>{/if}
{if not %position.last%}::{/if}
{/section}
{/strip}
{/if}
__________________
xcart 4.18 on linux
|