我安装了typo3 neos并将“仅限此页面”的布局更改为LandingPage。之后我看到了这个错误
Exception while rendering
landingPage:
No "landingPage" TypoScript object found. Please make sure to define one in your TypoScript configuration. (20140116115503dac096)
我该如何解决这个问题?
答案 0 :(得分:1)
打开[...] Sites / Your.Package / Resources / Private / TypoScript / Library / Roots.ts2并添加以下代码:
// Special page layout with less navigation components
landingPage < page
landingPage.body {
// Hide breadcrumb on landing pages
parts.breadcrumb >
landingPage = ${true}
}
现在UI应该再次加载。