Concealment of point of the menu by defaultСкрытие пункта меню по умолчанию

Happens so that there is no necessity to show in the menu point by default, and there is also a necessity to clean this point of the menu. But in Joomla necessarily there should be a menu point by default that will get rid of display of this, it is necessary in a file modules/mod_mainmenu/helper.php in the cycle beginningСлучается так, что нет необходимости показывать в меню пункт по умолчанию, а бывает и необходимость убрать этот пункт меню. Но в Joomla обязательно должен быть пункт меню по умолчанию, чтобы избавится от показа оного, нужно в файле modules/mod_mainmenu/helper.php в начале цикла

11
22
33
44
while (count ($rows) &&! is_null ($row = array_shift ($rows)))while (count($rows) && !is_null($row = array_shift($rows)))
{ {
...
}

To addдобавить

11
if ($row-> id == 1) continue;if ($row->id == 1) continue;

In this case 1 it ItemId point of the menu which is necessary for hiding.в данном случае 1 это ItemId пункта меню, который необходимо скрыть.
UPD: UPD:
That in Joomla 1.7 to hide main it is necessary after Чтобы в Joomla 1.7 скрыть главную нужно после

11
22
33
44
{{
  unset ($items [$i]);   unset($items[$i]);
  continue;   continue;
}

To addДобавить

11
22
33
44
if ($item-> id == 1) {if ($item->id == 1){
  unset ($items [$i]);   unset($items[$i]);
  continue;   continue;
}

Klikabelnye headings of modulesКликабельные заголовки модулей

It was required to make headings of modules кликабельными i.e. that the administrator could add in headings of modules of the reference. To look at the decisionПотребовалось сделать заголовки модулей кликабельными, т.е. чтобы админ мог добавлять в заголовки модулей ссылки. посмотреть решение