Posted on December 10, 2008Maarten
Default settings of the HTMLArea RTE do not allow you to create new folders or upload files to the fileadmin. 2 simple TSConfig lines can enable this. For your convenience: ## Enable upload field options.uploadFieldsInTopOfEB = 1 ## Enable folder create options.createFoldersInEB = 1 Check out the screenshot:
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 »