Created
November 5, 2015 19:23
-
-
Save d1i1m1o1n/a7af113318e12f5cdb0c to your computer and use it in GitHub Desktop.
Битрикс — добавляем название новости в цепочку навигации (хлебные крошки). В шаблоне news.detail добавим файл result_modifier.php.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
if($arParams['ADD_SECTIONS_CHAIN'] && !empty($arResult['NAME'])) { | |
$arResult['SECTION']['PATH'][] = array( | |
'NAME' => $arResult['NAME'], | |
'PATH' => '' | |
); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment