### List available TypoScript options Source: https://docs.typo3.org/p/georgringer/eventnews/main/en-us/AdministratorManual/Index.html Displays the available configuration keys for the extension. ```TypoScript startingpointLocation startingpointOrganizer ``` -------------------------------- ### Configure template root paths in TypoScript Source: https://docs.typo3.org/p/georgringer/eventnews/main/en-us/AdministratorManual/Index.html Defines the directory for custom extension templates to override default views. ```TypoScript plugin.tx_eventnews { view { templateRootPaths { 10 = EXT:your-site-package/Resources/Private/Extensions/Eventnews/Templates/ } } } ``` -------------------------------- ### Configure new news records as events via Page TsConfig Source: https://docs.typo3.org/p/georgringer/eventnews/main/en-us/AdministratorManual/Index.html Forces new news records to be treated as events and hides the manual checkbox in the backend. ```TypoScript tx_news.newRecordAsEvent = 1 TCEFORM.tx_news_domain_model_news.is_event { disabled = 1 } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.