找不到Typo3 Neos TypoScript

时间:2014-01-16 10:57:04

标签: exception typoscript typo3-neos

我安装了typo3 neos并将“仅限此页面”的布局更改为LandingPage。之后我看到了这个错误

Exception while rendering
landingPage:
No "landingPage" TypoScript object found. Please make sure to define one in your TypoScript configuration. (20140116115503dac096)

我该如何解决这个问题?

1 个答案:

答案 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应该再次加载。