Posted on January 4, 2009Maarten
The TYPO3 clipboard is a very handy tool but you rarely use all 4 of them. Also, when you logout the content is gone. Both these things can be fixed by a little TSConfig: ## Makes sure the clipboard doesn’t clear: options.saveClipboard = 1 ## Reduces the amount of clipboards from 4 to 1: options.clipboardNumberPads [...]
Read the rest of this entry »
Posted on November 16, 2008Maarten
I just found this line in the TSRef.. It’s not perfect but it makes your BE field like setup and constants in list mode wider. Just a small User TSConfig line so why not… ## Makes the BE fields wider setup.override.edit_wideDocument = 1 See screenshots!
Read the rest of this entry »
Posted on November 14, 2008Maarten
The following Page TSConfig line is usefull if you have a lot of records on a single page. mod.web_list { alternateBgColors = 1 }
Read the rest of this entry »
Posted on November 7, 2008Maarten
Personally I hate it when TYPO3 hides my new copied record. TYPO3 also prepends your new copied record with something like ‘copy (1)’. To avoid this you can put this code in your PageTSConfig: TCEMAIN.table.pages { disablePrependAtCopy = 1 disableHideAtCopy = 1 } TCEMAIN.table.tt_content { disablePrependAtCopy = 1 disableHideAtCopy = 1 }
Read the rest of this entry »
Posted on November 1, 2008Maarten
In most cases I don’t use some tt_content fields, so it would be nice to don’t see them at all. Also for other backend users less is more (easy). So let’s clean them up!
Read the rest of this entry »
Posted on October 25, 2008Maarten
Sometimes you need to make the TYPO3 BE as clean and empty as posible for other (read: less techical) users. In that case it can be usefull to remove non-used content columns. Here how to: Copy Paste this in your Page TSConfig TCEFORM.tt_content.colPos { altLabels { 1 = Left 0 = Normal 2 = Right [...]
Read the rest of this entry »