1
votes

I'm new to TYPO3 and I often copy content elements in the TYPO3 backend module. All copies are suffixed. They are also disabled/hidden after copying.

Is it possible to remove the automatic suffix of a copied content element?

1

1 Answers

6
votes

You can configure this behaviour in TYPO3 for each table with Page-/UserTSConfig:

TCEMAIN {
    table {
        tt_content {
            // remove suffix from copied record
            disablePrependAtCopy = 1
            // optionally you can set copied record visible with
            disableHideAtCopy = 1
        }
    }
}

As mentioned already above, you can individually set this for each known and editable table within TYPO3.