| Wednesday 24 August 2005 11:02:20 am 
                                                                 Thanks Ekke... In him connect that you gave me solve the problem of showing the name of the previous node of the following way: 
{let current=fetch('content','node',hash('node_id',$node.node_id))parent=fetch('content','node',hash('node_id',$:current.object.main_parent_node_id))
 grandparent=fetch('content','node',hash('node_id',$:parent.object.main_parent_node_id))}
 
{$:grandparent.name}{$:parent.name}
 {$:current.name}
 {/let} Nevertheless I am necessary to create a link that allows me to open the nodes by means of a hyperlink, something this way like: 
<a href={" "|ezurl}>{$:grandparent.name}</a><a href={" "|ezurl}>{$:parent.name}</a>
 The detail is that not that to put in the "href". Thank you in advance for any other help... |