I would like to know if ELLNav H/V allows to get a title at top of vertical menu?
This title would be parent level menu_text!
I've found a topic speaking about this but with no answer.
http://forum.cmsmadesimple.org/index.ph ... ml#msg7404
Solution would be a tag with code below. Could this be validated by CMSMS guru

global $gCms;
global $db;
$vars = $gCms->variables;
$query = "SELECT content_name FROM ".cms_db_prefix()."content WHERE content_id = (SELECT parent_id FROM ".cms_db_prefix()."content WHERE content_id = '".$vars['content_id']."');";
$dbresult = $db->Execute($query);
if ($dbresult && $dbresult->RowCount() > 0) {
$row = $dbresult->FetchRow();
echo $row['content_name'];
}
Thanks for help