I want to add some custom fields to the news records. But I want them to appear in the already existing "General" tab and not in a new tab "Extended" which is automatically created, when adding new fields.
I extend the news in the file <theme_extension>/Configuration/TCA/Overrides/tx_news_domain_model_news.php.
But I don't konw how to specify, where the fields appear.
Any help is appreciated, thanks in advance.
Philly
The position of your fields in the TCEform is done in the commaseparated list of
$GLOBALS['tx_news_domain_model_news']['types'][<type>]['showitem'].You have 2 options:
str_replace()to set your fields into the correct position.