Archive for the ‘Extensions’ Category

TYPO3: Simple way to convert content to PDF

A simple way to let FE-users download your content as a PDF file: First install the extension: PDF Generator (html2fpdf) nc_pdfgen Now add a download link at the bottom of the content: subparts.your_content_id = COA subparts.your_content_id { 10 < styles.content.get 20 < temp.PDF } Setup the downloadlink using the extension: temp.PDF = COA temp.PDF { [...]

Read the rest of this entry »

TYPO3: Single tt_news with ratings and comment on frontpage

There is a TypoScript solution for displaying a single news item on your frontpage,  this way you don’t need to use a List of Latest element. But this is not always effective since you are not able to rate or comment this single news item, just the page. After a long search I found this [...]

Read the rest of this entry »

TYPO3: Don’t display duplicate tt_news items

This makes sure tt_news never displays duplicate news items on the same page. Put this is your typoscript setup: plugin.tt_news { excludeAlreadyDisplayedNews = 1 } This can be usefull when you have multiple news plugins on one page, like latest and list.

Read the rest of this entry »

TYPO3: Logout menu button

The default loginbox shows you a form to logout as a FE-user. If you’d like a menu button instead you can use to following method: 1) Create a new page – choose pagetype External URL 2) Use to following URL: www.YOURURL.com/index.php?id=YOUR-HOMEPAGE-ID&logintype=logout

Read the rest of this entry »