Aswathy S
Aswathy S

Reputation: 731

Remove default pi flexform fields from plugin configuration - typo3

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?

enter image description here

Upvotes: 2

Views: 900

Answers (1)

Ques
Ques

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

Related Questions