Joomla 3 get the menu title
I'm using multiple menus on one page. In multiple divs I'm showing a menu (menu1 to menu6). For templating purposes I would like to get the menu title of each menu to show on top. I'm not managing to get the title from the menu. I found this is the way to get the menu items. <?php $menu = $app->getMenu(); $menu_items = $menu->getItems('menutype', 'menu1'); var_dump ($menu_items); ?> Couldn't be so hard but can't find the right syntax. Who could help me? Thanks in advance, Wims Lahmizzar Also you can use this one: $menu = &Jsite::getMenu(); $menuname = $menu->getActive()->title; or if already