The site in the footer has navigation links to the pages of the site.
I need to change some links, but I can not find where it is configured from the admin.
Here is the code of the block itself.
<?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?> <? if (!empty($arResult)){ $menuLength = count($arResult); if (($menuLength % 2) == 0) { $menuMiddle = ($menuLength / 2); }else{ $menuMiddle = (($menuLength - 1) / 2)+1; } ?><div class="nav inline"> <ul><? for ($i = 0; $i < $menuMiddle ; $i++) { ?><li> <a href="<?=$arResult[$i]["LINK"]?>" title="<?=$arResult[$i]["TEXT"]?>"> <?=$arResult[$i]["TEXT"]?> </a> </li><? } ?> </ul> </div><? ?><nav class="inline"> <ul class="nav_foot inline"><? for ($i = $menuMiddle; $i < $menuLength ; $i++) { ?><li> <a href="<?=$arResult[$i]["LINK"]?>" title="<?=$arResult[$i]["TEXT"]?>"> <?=$arResult[$i]["TEXT"]?> </a> </li><? } ?> </ul> </nav><? } ?> those. You need to configure the block with the class nav_foot inline .
Here is the path of this file:
/local/templates/main/components/bitrix/menu/bottom_menu/template.php Where can I find the setting of this unit in the admin panel?
Ps.
added another block that needs to be configured from admin
<? if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die(); ?> <? if (!empty($arResult)){ ?> <nav class="inline"> <!--1 LEVEL--> <ul class="nav_head inline dropdown"> <?php $previousLevel = 0; foreach ($arResult as $arItem){ ?> <? if ($previousLevel && $arItem["DEPTH_LEVEL"] < $previousLevel){ echo str_repeat("</ul></li>", ($previousLevel - $arItem["DEPTH_LEVEL"])); } ?> <? if ($arItem["IS_PARENT"]){ ?> <? if ($arItem["DEPTH_LEVEL"] == 1){ ?> <li class='dropdown-top'> <a href="<?= $arItem["LINK"] ?>"class="dropdown-top <? if ($arItem["SELECTED"]): ?>dropdown-top<? else: ?>dropdown-top<? endif ?>"><?= $arItem["TEXT"] ?> </a> <!--<li><a href="#" title="Π ΠΊΠΎΠΌΠΏΠ°Π½ΠΈΠΈ">Π ΠΊΠΎΠΌΠΏΠ°Π½ΠΈΠΈ</a></li>--> <!--<li class="dropdown-top"><a class="dropdown-top" href="all-services.html">Π£ΡΠ»ΡΠ³ΠΈ</a>--> <!-- 2 LEVEL--> <ul class="dropdown-inside"> <? }else{ ?> <li <? if ($arItem["SELECTED"]): ?> class="new"<? else:?>class="new"<? endif; ?>><a href="<?= $arItem["LINK"] ?>"><?= $arItem["TEXT"] ?></a> <!--3 LEVEL--> <ul class="two"> <? } ?> <? }else{ ?> <? if ($arItem["PERMISSION"] > "D"){ ?> <? if ($arItem["DEPTH_LEVEL"] == 1){ ?> <li class="level new"> <a href="<?= $arItem["LINK"] ?>"class="<? if ($arItem["SELECTED"]): ?>root-item-selected<? else: ?>root-item<? endif ?>"><?= $arItem["TEXT"] ?></a> </li> <? }else{ ?> <li class="level new" <? if ($arItem["SELECTED"]): ?> class="item-selected"<? endif ?>> <a href="<?= $arItem["LINK"] ?>"><?= $arItem["TEXT"] ?></a> </li> <? } ?> <? }else{ ?> <? if ($arItem["DEPTH_LEVEL"] == 1){ ?> <li> <a href="" class="<? if ($arItem["SELECTED"]): ?>root-item-selected<? else: ?>root-item<? endif ?>"title="<?= GetMessage("MENU_ITEM_ACCESS_DENIED") ?>"><?= $arItem["TEXT"] ?> </a> </li> <? }else{ ?> <li> <a href="" class="denied" title="<?= GetMessage("MENU_ITEM_ACCESS_DENIED") ?>"><?= $arItem["TEXT"] ?> </a> </li> <? } ?> <? } ?> <? $previousLevel = $arItem["DEPTH_LEVEL"]; ?> <!--</ul>--> <!-- END 3 LEVEL--> <!--</li>--> <!--</ul>--> <!-- END 2 LEVEL--> <!--</li>--> <? } ?> <? } ?> <? if ($previousLevel > 1){//close last item tags?> <?= str_repeat("</ul></li>", ($previousLevel - 1)); ?> <? } ?> <? if ($previousLevel > 1){//close last item tags?> <?= str_repeat("</ul></li>", ($previousLevel - 1)); ?> <? } ?> </ul> <!-- END 1 LEVEL--> </nav> <? } ?> those. dropdown-inside is nested menu items. Where can they be changed in the admin panel?