Monday 21 July 2003 5:37:33 am
Any of you guys had trouble with clickable paths on your ez webpages? Example: /Front page/News/Sports/ I have this code snippet in my pagelayout_mydesign.tpl-file to give me a clickable path at the top of the pages. It displays current path just fine, but when clicked on it returns "Unavailable The object is not available.". Seems like the node number isn't included in the call generated by clicks on the path
{section name=Path loop=$module_result.path offset=2}
{section show=$Path:item.url}
<a class="path" href="{concat($Path:item.url, "/")|ezurl}">{$Path:item.text|wash}</a>
{section-else}
{$Path:item.text|wash}
{/section}
{delimiter}
/
{/delimiter} {/section}
|