I am working on a v10 client site and I cannot get pagetype == 'section' to work in a blockif.
It's a while ago and I may well have forgotton something but why is this variable not working?
If I put this in the outer layout it executes correctly:
So on a section page it will display the word 'Section'
Do this and nothing displays on a section page or anywhere else for that matter.:
Thank you!
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22section%22" >section</actinic:block>
If I put this in the outer layout it executes correctly:
Code:
<h1><actinic:variable name="PageType" /></h1>
Do this and nothing displays on a section page or anywhere else for that matter.:
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%27section%27"> <h1><actinic:variable name="PageType" /></h1> </actinic:block>
Comment