PDA

View Full Version : If ForumHome Else


trigatch4
04-22-2008, 05:46 AM
I want to display my breadcrumb on every page EXCEPT my forumhome. I figured a simple little script could be written that just said:

<IF> (you are on forumhome)
(do nothing)
<ELSE>
(display breadcrumb)
</IF>

That is the concept but I need help filling in with technical groundwork. I've seen others request this before with no luck so hopefully we'll solve it for all! Thanks in advance folks...

Boofo
04-22-2008, 05:59 AM
<if condition="THIS_SCRIPT == 'index'">
(do nothing)
<else />
(display breadcrumb)
</if>

SEOvB
04-22-2008, 05:59 AM
<if condition="THIS_SCRIPT == index">
CODE
<else />
</if>

Dismounted
04-22-2008, 07:35 AM
<if condition="THIS_SCRIPT != 'index'">
(display breadcrumb)
</if>