benjaminkott / bootstrap_package

Bootstrap Package delivers a full configured theme for TYPO3, based on the Bootstrap CSS Framework.
https://www.bootstrap-package.com/
MIT License
338 stars 205 forks source link

Language Menu doesn't work for news detail pages #1466

Open mschmitz89 opened 10 months ago

mschmitz89 commented 10 months ago

As mentioned in the news documentation, the language menu need this Processor to check if news detail pages are available or not. Otherwise you will get a link to the news translation even if it does not exist.

To fix this, you have to add:

page {
    10.dataProcessing {
        40 {
            as = languagenavigation
            addQueryString = 1
        }
        41 = GeorgRinger\News\DataProcessing\DisableLanguageMenuProcessor
        41 {
          if.isTrue.data = GP:tx_news_pi1|news
          menus = languagenavigation
        }
    }
} 

Maybe this can be included in the next update of bootstrap_package?