Posts Tagged ‘Configuration’

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: 5 things about tt_news

In this post I’ll show you 5 things about tt_news which might be nice to know about tt_news. We discuss a better pagebrowser, loading tt_news without cache and making images perfectly square by generating them automatically.

Read the rest of this entry »

TYPO3 SEO: The Basics…

In this post I’m going to show you some basics of SEO in TYPO3, I will explain how you can easily handle SEO stuff within TYPO3. This is not a “best practise” nor is it a tutorial on how SEO works. But if you’re new to TYPO3, or SEO in TYPO3 you’ll find some useful things here.

Read the rest of this entry »

TYPO3: Javascript at the bottom of your page

Yslow tells you to put your javascripts at the bottom of your pages. Normally when you include your JS files TYPO3 puts them in your head by default. To fix this you can easily: Old style: page.includeJS.file1 = file.js Solution: page.20 < lib.javascript lib.javascript = HTML lib.javascript.value = <script type=”text/javascript” src=”file.js”></script> Note: In this example [...]

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: 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 »