PDA

View Full Version : How do I know which page the forum is loading


ablaye
10-17-2007, 03:18 PM
Hi,

Is there a way to know which page the forum is loading? By that, I mean is there a variable that I can read that would tell me that I am currently loading the forum home page.
I want to modify the navbar to only display some specific data when it is included in the forum home page.

Thanks

Opserty
10-17-2007, 03:32 PM
In the template:

<if condition="THIS_SCRIPT == 'index'">
<!-- Custom code here -->
</if>

ablaye
10-17-2007, 03:55 PM
Thanks. It worked like a charm.