Archive for the ‘TSConfig’ Category

TYPO3: Hide records from static_info_tables in the rootpage

After you installed static_info_tables in your TYPO3 installtion, you get a whole bunch of records displayed in the rootpage. This really slows down the page, which isn’t funny when you work a lot with usergroups. You can hide all of these records with a simple line in your BE-User-TSConfig.

Read the rest of this entry »

TYPO3: Clear all cache for non-admins

With this line of User TSConfig you can enable non-be-admin’s to clear all cache the way an admin would. options.clearCache.all = 1

Read the rest of this entry »

TYPO3: Always a ‘Save and create new’ button

Some default records and extension records offer a ‘save and create new’ button. Which is very usefull when making a lot of new records in a row. This line makes that button available for every kind of record: ## Always a save and create new button options.saveDocNew = 1 Place this line in your TSConfig…

Read the rest of this entry »

TYPO3: Remove javascript warnings in the BE

Use the following in your TSConfig to disable warnings in the BE. This can be useful when you’re an experienced user. Just be careful, warning are not there just to anoy you ;) # This option defines via a bitmask what to enable or disable # options.alertPopups = 255 (default value) # These options are [...]

Read the rest of this entry »

TYPO3: The Clipboard

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 »

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 »