You did not write what kind of news extension you are using. For old tt_news you disable
TCEFORM.tt_news.type.removeItems = 1,2
for the new "news"
TCEFORM.tx_news_domain_model_news.type.removeItems = 1,2
General syntax:
TCEFORM.[table_name].[field_name].[action]
For example, you can completely disable unused fields with
TCEFORM.[table_name].[field_name].disabled = 1
You can also set default values for fields with syntax
TCAdefaults.[table_name].[field_name] = value
You must add this typo in the page properties. Resources tab, TypoScript configuration field / TSConfig page.
source share