Archive for the ‘TSConfig’ Category

TYPO3: Create new folders and upload files through the RTE

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 »

TYPO3: Wider text field in BE

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 »

TYPO3: Alternative BE Backgroundcolor

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 »

TYPO3: Disable hide & prepend at copy

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 »

TYPO3: Clean up non used tt_content fields

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 »

TYPO3: Removing content element columns

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 »