Quantcast
Channel: Insane in the Main Frame
Viewing all articles
Browse latest Browse all 310

Typo3: disable hidden when copying translation

$
0
0

That is stunningly easy with TypoScript, it’s even possible to prevent the prepend of “[Translate to english]” text on the headline:

  1. //for pages
  2. TCEMAIN.table.pages {
  3. disablePrependAtCopy = 1 //the [Translate to XXX] text
  4. disableHideAtCopy = 1 //hidden
  5. }
  6. //for content elements
  7. TCEMAIN.table.tt_content {
  8. disablePrependAtCopy = 1
  9. disableHideAtCopy = 1
  10. }

Found it here.


Viewing all articles
Browse latest Browse all 310

Trending Articles