Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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]   
share|improve this question

1 Answer

up vote 1 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]   
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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