Нашел шаблон, который выводит меню, но не пойму где редактируется в нем информация
<? if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die();
/** @var array $arParams */
/** @var array $arResult */
/** @global CMain $APPLICATION */
/** @global CUser $USER */
/** @global CDatabase $DB */
/** @var CBitrixComponentTemplate $this */
/** @var string $templateName */
/** @var string $templateFile */
/** @var string $templateFolder */
/** @var string $componentPath */
/** @var CBitrixComponent $component */
$this->setFrameMode(true);
if (!empty($arResult)) { ?>
<ul class="collapse collapse-footer-menu-bottom-catalog footer-instruction-bottom">
<?foreach($arResult as $arItem):?>
<li><a href="<?=$arItem['LINK']?>" target="_blank"><?=$arItem['TEXT']?></a></li>
<?endforeach;?>
</ul>
<? } ?>