Скорее всего это касается настроек TS для пользователей или страниц. То есть для определенного пользователя нужно исключить использование заголовка первого уровня из списка, либо установить там значение по умолчанию на заголовок второго уровня... Глянь документацию здесь:
https://typo3.org/documentation/docu...ru/4.5.2/view/
Еще по теме:
http://buzz.typo3.org/people/ron-hal...tent-elements/
Вкратце:
Цитата:
In the constants field (not setup) of your typoscript template add:
content.defaultHeaderType = 3
From that point in the page tree each header assigned a layout of "default" will be an H3. Change the "3" to another number and you will have the corresponding header level (i.e. change it to a "2" and you will have a default of H2).
|
Ну и это работает для инструктирования TYPO3, как выводить заголовки:
PHP код:
tt_content.header.20.dataWrap >
tt_content.header.20.prefixComment >
lib.stdheader.stdWrap.dataWrap >
lib.stdheader.stdWrap.prefixComment >
lib.stdheader {
10.1.fontTag = <h1>|</h1>
10.2.fontTag = <h2>|</h2>
10.3.fontTag = <h3>|</h3>
10.4.fontTag = <h4>|</h4>
10.5.fontTag = <h5>|</h5>
10.6.fontTag = <h6>|</h6>
}