here is the code in the template that I am using
Code: Select all
<div id="menu_horiz">{hierarchy}
{menu template='simplenav' start_element=$h_this collapse='2'}</div>
Code: Select all
# Name: hierarchy
global $gCms;
$pos = $gCms->variables['position'];
$base = explode('.', $pos);
$smarty->assign('h_toplevel', $base[0] * 1);
$smarty->assign('h_parent', $base[ (count($base) > 1) ? count($base)-2 : 0 ] * 1);
$smarty->assign('h_this', $base[count($base)-1] * 1);
You can see what I'm talking about here
http://tuckness.com/index.php?page=henr ... s-tuckness
Any idea's?
Thanks for any help!!!
Kristy