If you wanted to show specific data on certain pages then here is the conditionals you would need to use
Forum home: HTML Code:
<if condition="THIS_SCRIPT == 'index'">
DATA GOES HERE
</if>
Calendar: HTML Code:
<if condition="THIS_SCRIPT == 'calendar'">
DATA GOES HERE
</if>
PM: HTML Code:
<if condition="THIS_SCRIPT == 'private'">
DATA GOES HERE
</if>
Deny Access from Guests: HTML Code:
<if condition="$show['member']">
DATA GOES HERE
</if>
Be careful with the last quotes, it is a single followed by a double-quote.