When you copy content elements or pages in Typo3, the default behaviour is to hide them and suffix the name with the string “copy (1)”. This can become very kidding when you have to copy things often or a couple of times.

This behaviour can be turned of by adding the following TypoScript to your TS page config in the page properties of the top page in your page tree:


TCEMAIN.table.pages {
disablePrependAtCopy = 1
disableHideAtCopy = 1
}

TCEMAIN.table.tt_content {
disablePrependAtCopy = 1
disableHideAtCopy = 1
}

Typo3: Copy Without Hiding And “copy (1)” Suffix

Post navigation


Leave a Reply