简体   繁体   中英

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. 在此处输入图片说明

My TCA configuration:

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

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: 在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM