Currently I'm working with PIDinRootline. This works fine.

[PIDinRootline=8,9]
    //do something
[end]

[PIDinRootline=6,7,11]
    //do something
[end]

Now I want to address a set of subpages under 7. Currently an all pages where the parent has the id 7 has the same code. But now I want something different on page id 128 and all its subpages. Is it allowed to make something like

[PIDinRootline=8,9]
    //do something
[end]

[PIDinRootline=6,7,11]
    //do something different
[end]
[PIDinRootline=128]
    //do something
[end]

So the page 128 is under 7. The setting is overwritten because first the settings from PIDinRootline=7 takes place and then the settings from PIDinRootline=128. Is this allowed?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Definetely allowed. Just make sure you define conditions in the same order as quoted. You can actually leave out some of the [end] conditions:

[PIDinRootline=8,9]
    //do something
[PIDinRootline=6,7,11]
    //do something different
[PIDinRootline=128]
    //do something
[end]

Other useful page related conditions are:

  • [globalVar = TSFE:id = 128] // Only on PID 128
  • [PIDupinRootline = 128] // Only on subpages of PID 128 (PID 128 not included)
  • [treeLevel = 1] // All pages that belong to tree level 1 (subpages of root level)
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.