2023.05.26
Что делать если не выводится якорные ссылки в статье?
Нужно открыть файл:
/bitrix/templates/решение/components/bitrix/news.detail/news.default.1/component_epilog.php
В самом конце условие:
<?php if ($arResult['VISUAL']['ANCHORS']['POSITION'] === 'fixed')
$APPLICATION->AddViewContent('template-header-fixed-after', $view);
else
$APPLICATION->AddViewContent('template-header-desktop-after', $view);
?>
Заменить на такое:
<?php if ($arResult['VISUAL']['ANCHORS']['POSITION'] === 'fixed') {
$APPLICATION->AddViewContent('template-header-fixed-after', $view);
echo $APPLICATION->ShowViewContent('template-header-fixed-after');
} else {
$APPLICATION->AddViewContent('template-header-desktop-after', $view);
echo $APPLICATION->ShowViewContent('template-header-desktop-after');
}
?>
Наши решения