Erich Schindl
Erich Schindl

Reputation: 151

How can I remove an override check button in TYPO3 TCA

Servus, I am searching for the solution how can I remove an override check button in TYPO3 TCA.enter image description here

My TCA configuration:

'myfield' => array(
    'l10n_mode' => 'mergeIfNotBlank',
    'exclude'   => 1,
    'label'     => 'my field',
    'config'    => array(
        'type'        => 'input',
        'size'        => '20',
        'eval'        => 'trim',
        'placeholder' => 'my placeholder',
    )
),

Upvotes: 2

Views: 150

Answers (1)

It is a problem with your placeholder. If you dont need your placeholder, you can remove it.

So your code can look like this:

'myfield' => array(
    'l10n_mode' => 'mergeIfNotBlank',
    'exclude'   => 1,
    'label'     => 'my field',
    'config'    => array(
        'type'        => 'input',
        'size'        => '20',
        'eval'        => 'trim',
    )
),

so after that this should looks like this: enter image description here

Upvotes: 5

Related Questions