Posts Tagged ‘Typoscript’

TYPO3: Placing a content record on every page

Sometimes you want a record to be placed on every page and still to be in the TYPO3 backend as a dynamic record. Like a flash header plugin for example. Of course you can do this by placing the record on every page but that wouldn’t be very handy. Luckily it can be done a [...]

Read the rest of this entry »

TYPO3: A really simple and basic menu

This is probably the most simple way to add a dynamic menu to your TYPO3 website. Just put the code into the Typoscript setup and parse temp.menu through the autoparser. temp.menu = HMENU temp.menu.1 = TMENU temp.menu.1 { NO.ATagBeforeWrap = 1 } Now you have a menu with nothing more than just an anchor tag.

Read the rest of this entry »

TYPO3: Comment in the source code

A lot of web developers place their (company)name in top of the source code. Just to let people know who made the website or add contact information. You can do this to with TYPO3. Just use the following Typoscript Setup: ### Headercomment ### config.headerComment ( This website was made by me! )

Read the rest of this entry »

TYPO3: A graphical content header

Ever wondered how to make a dynamic nice graphical header? TYPO3 can make these by using the GIFBUILDER on the webserver. To make the magic happen you’ll need to overwrite the default headers by using this Typoscript Setup. You’ll probably need to adjust some of the code to get a nice output depending on the [...]

Read the rest of this entry »