Quote:
Originally Posted by qrichou
So is there a way of hiding the product title in the breadcrumb but showing it in the page titles?
|
A quick rehash (including warts and all) of location.tpl for you...
PHP Code:
{if $location}
<font class="NavigationPath">
{strip}
{section name=position loop=$location}
{if not %position.last%}
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}" class="NavigationPath">{/if}
{$location[position].0}
{if $location[position].1 ne "" }</a>{/if} > {/if}
{/section}
{/strip}
</font>
<br /><br />
{/if}
Hope this helps.
==========================
Edit: Note: It will always remove the current area. For example, it will remove the breadcrumb from the home page or the current category you reside in on a page.