[TYPO3-irre] How to disable FE rendering of child records?
Marcus 'biesior' Biesioroff
vsbies at wp.pl
Thu Dec 11 10:19:14 CET 2008
Marcus 'biesior' Biesioroff pisze:
> Ellou List
>
> Is there any way to disable rendering of child records placed in 'Normal
> Column' ?
Hm, Yes, it is :) and it's quite easy:
[TS]
temp.normalColumnWithoutIRRE = CONTENT
temp.normalColumnWithoutIRRE {
table = tt_content
select {
where = colPos = 0 AND irre_parentid = 0
orderBy = sorting
languageField = sys_language_uid
}
page.10.subparts.NORMALCOL < temp.normalColumnWithoutIRRE
[/TS]
or even easier:
[TS]
page.10.subparts.NORMALCOL < styles.content.get
page.10.subparts.NORMALCOL.select.where = colPos=0 AND irre_parentid = 0
[/TS]
More information about the TYPO3-project-irre
mailing list