kochiro
04-25-2012, 06:43 AM
I am trying to detect what the current page is so that I can do some conditional styling by changing the stylesheet classes depending on the result.
I've seen in one of the template files the following if condition:
<vb:if condition="THIS_SCRIPT == 'vbcms' ">
Looking at the source code I can see that the parameter RELPATH has the value that I want to use.
I have tried:
<vb:if condition="RELPATH == 'mypath' ">
However that doesn't work. It seems like it is impossible to access RELPATH in this way even though it is clearly set when viewing the source of the page.
I can output {vb:raw relpath} however I haven't been able to get that to work in an if condition either.
How can I detect the current path to be used in an if condition?
Thank you,
Jay
SOLUTION:
After just throwing in bits here and there trying to get any result using some form of "relpath" I found this to work:
<vb:if condition="$relpath == 'mypath'">
I've seen in one of the template files the following if condition:
<vb:if condition="THIS_SCRIPT == 'vbcms' ">
Looking at the source code I can see that the parameter RELPATH has the value that I want to use.
I have tried:
<vb:if condition="RELPATH == 'mypath' ">
However that doesn't work. It seems like it is impossible to access RELPATH in this way even though it is clearly set when viewing the source of the page.
I can output {vb:raw relpath} however I haven't been able to get that to work in an if condition either.
How can I detect the current path to be used in an if condition?
Thank you,
Jay
SOLUTION:
After just throwing in bits here and there trying to get any result using some form of "relpath" I found this to work:
<vb:if condition="$relpath == 'mypath'">