I'm trying to include a typoscript on the child pages of the page it's included on.

On page id 272 I have included in the setup a typoscript file:

<INCLUDE_TYPOSCRIPT: source="FILE:fileadmin/templates/typoscript/fancyBoxPopup.ts">

And I only want this typoscript to run on that pages children. So I tried this:

[globalVar = TSFE:id != 252, 253, 254, 270, 272, 271, 273, 274]

But that makes the script run on all children and parents (those listed in the statement)
Here is the full script:

[globalVar = TSFE:id != 252, 253, 254, 270, 272, 271, 273, 274]
    page.includeJS >
    page.includeJS.ieFixes = fileadmin/templates/js/ieFixes.js

    columnWidth {
        page {
            main = 400
        }
    }
[end]   
link|improve this question

60% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I think I manage to fix it.

I found PIDupinRootline.

So the final code looks like this:

[PIDupinRootline = 252,253,254,270,272,271,273,274]
    ...
[end]   
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.