Reputation: 731
I created a typo3 extension.I have a flex form for configuring my pluggin.The form contains some default typo3 configuration like pluggin mode,storage folder and recursive.I want to hide these fields.How can it is possible?
Upvotes: 2
Views: 900
Reputation: 265
Try the following in your ext_tables.php file
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$pluginSignature] = 'recursive,select_key,pages';
Upvotes: 3