Thanks Ashley this works like a gem.
And one more thing that Where can i find the code for adding the page title.
I like to change the page title format .(I will add few more options in config for page title.) Right now there is only two option.
So what i need is to find the php code where they use this config value .I searched in Auth.php But i cant able to figure out.
HAve you ever tried this?
Where they generate the page title?
Do you people have any idea?
Quote:
Originally Posted by Ashley
think this is what you want...
change location.tpl to this.
{* $Id: location.tpl,v 1.14.2.2 2007/06/18 11:42:03 max Exp $ *}
{if $location}
<font class="NavigationPath">
{strip}
{section name=position loop=$location}
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}" class="NavigationPath">{/if}
{if %position.first%}
Home
{else}
{$location[position].0}
{/if}
{if $location[position].1 ne "" }</a>{/if}
{if not %position.last%} - {/if}
{/section}
{/strip}
</font>
{/if}
|