Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 5, 2015 19:23
Show Gist options
  • Save d1i1m1o1n/a7af113318e12f5cdb0c to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/a7af113318e12f5cdb0c to your computer and use it in GitHub Desktop.
Битрикс — добавляем название новости в цепочку навигации (хлебные крошки). В шаблоне news.detail добавим файл result_modifier.php.
<?
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