0

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

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

我怎样才能解决这个问题?

4

1 回答 1

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。

于 2014-01-16T10:57:03.780 回答