I searched almost everywhere, here is the head in the template, as I understand it somewhere refers?

<head> <?$APPLICATION->ShowMeta("keywords_prop", "keywords")?> <?$APPLICATION->ShowMeta("description_prop", "description")?> <?$APPLICATION->ShowHead();?> <meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible"/> <title><?$APPLICATION->ShowTitle()?></title> <? $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/jquery-1.6.2.min.js'); $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/jquery.easing.1.3.js'); $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/jquery-galleryview-1.0.1/jquery.galleryview-1.0.1-pack.js'); $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/jquery-galleryview-1.0.1/jquery.timers-1.1.2.js'); $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/swfobject.js'); $APPLICATION->AddHeadScript('/bitrix/templates/web20/js/script.js'); ?> </head> 

  • Have you read the Content Manager course on installing headers? And the documentation was viewed? What exactly do you fail when changing? What actions were performed? What do you want to get? - Nikolaj Sarry
  • Thank you very much, you have already answered my question! - Stewart Bertalan
  • Then I will issue a comment as an answer, I hope you mark it as a solution. - Nikolaj Sarry

2 answers 2

The answer to the question of changing the title, as well as other properties of the page, you can find in the course " Content Manager " in the chapter " Managing properties of pages and sections "

Read more about the ShowTitle() function in the documentation .

    On the page you need to set the title:

     <? $APPLICATION->SetTitle("Page title"); ?> 

    Read more

    More about how technology works

    • Thank you already solved the question! - Stewart Bertalan