2014-01-16 85 views
0

我插入了typo3 neos並將佈局「僅限此頁」更改爲LandingPage。之後我看到這個錯誤Typo3 Neos TypoScript找不到

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

我該如何解決這個問題?

回答

1

打開[...]網站/ Your.Package /資源/個人/ Typo腳本/庫/ Roots.ts2並添加以下代碼:

// Special page layout with less navigation components 
landingPage < page 
landingPage.body { 
    // Hide breadcrumb on landing pages 
    parts.breadcrumb > 
    landingPage = ${true} 
} 

現在UI應該再次載入。