I am using this code in my menu:
{def $menu = treemenu( $module_result.path, false(), array( 'folder', 'article', 'page', 'listing', 'blog' ), 1, 2, true )}
{if $menu}
<a href={$module_result.path[1].url_alias|ezurl} class="leftnavtop{cond(eq($current_node.node_id, $module_result.path[1].node_id), 'ON', '')}">{$module_result.path[1].text|shorten(24)|wash()}</a>
{foreach $menu as $key => $item}
<a class="{concat('leftnav', cond($item.level|eq(1), '2', ''), cond($item.is_selected, 'ON', ''))}" href={$item.url_alias|ezurl()}>{$item.text|shorten(32)|wash()}</a>
{/foreach}
{/if}
With this name of link is taken from "short_name" and url is also from "short_name".
Is it possible to change little bit code so i have name of link taken from "name" and url to stay from "short_name".
Name: Name of link
Short Name: url example
Final Solution: Name of link (but goes to www.mysite.com/url-example)
Hope i explain it good.
I try few solutions but i had no luck.
Thanks in advance