TYPO3 v14 Backend Access, User Roles & Permissions: Complete Admin Guide (2026)
Security
Do you want to know how to create a one-page TYPO3 Site? (Using TypoScript) This little TypoScript tutorial will help you to easily create one page TYPO3 site with best backend usability.
<!-- At your TypoScript Menu or Fluid DataProcessing Template -->
<a href="#{item.title}">{item.title}</a> // TypoScript Object to get all pages content
lib.onePageScrollContent = CONTENT
lib.onePageScrollContent {
table = pages
select {
languageField = sys_language_uid
pidInList = {$ns_basetheme.website.settings.main_menu}
where = nav_hide = 0
orderBy = sorting
}
renderObj = COA
renderObj {
5 = TEXT
5 {
field = title
htmlSpecialChars = 1
wrap = <section id="|">
stdWrap.case = lower
stdWrap.replacement {
10 {
search.char = 32
replace.char = 45
}
15 {
search = /
replace =
}
}
}
20 = CONTENT
20 {
table = tt_content
select {
languageField = sys_language_uid
pidInList.field = uid
orderBy = sorting
where = colPos = 0
}
stdWrap.wrap = |</section>
stdWrap.wrap.insertData = 1
}
}
} // Fluid rendering for home and all pages content
<f:cObject typoscriptObjectPath="lib.content"/>
<f:cObject typoscriptObjectPath="lib.onePageScrollContent"/>
Keval Pandya
TYPO3 Team Leader at NITSAN and T3Planet, Love TYPO3!
More From Author