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?