Code: Select all
<!-- IF FORUM_ID eq '33' --> the one line you want to show<!-- ENDIF -->
Code: Select all
...
<!-- ELSEIF not forumrow.S_IS_LINK -->
things
<!-- ELSE -->
<dd> </dd>
<!-- ENDIF -->
...
Code: Select all
...
<!-- ELSEIF not forumrow.S_IS_LINK -->
things
<!-- ELSE -->
<!-- IF FORUM_ID eq 'whatever1' --><a href="blah1">bleh1</a><!-- ENDIF -->
<!-- IF FORUM_ID eq 'whatever2' --><a href="blah2">bleh2</a><!-- ENDIF -->
<!-- ENDIF -->
...
Code: Select all
<!-- ELSE -->
<!-- IF FORUM_ID eq 'whatever1' --><a href="blah1">bleh1</a>
<!-- ELSEIF FORUM_ID eq 'whatever2' --><a href="blah2">bleh2</a>
<!-- ELSEIF FORUM_ID eq 'whatever*' --><a href="blah*">bleh*</a>
<!-- ELSE --><a href="blubb">blop</a>
<!-- ENDIF -->
<!-- ENDIF -->
eq
I think ==
can be used and instead of single quote '
the double quote "
Hi buddy, where do should I do that?regazer wrote:maybe it has to be something like thisCode: Select all
<!-- ELSE --> <!-- IF FORUM_ID eq 'whatever1' --><a href="blah1">bleh1</a> <!-- ELSEIF FORUM_ID eq 'whatever2' --><a href="blah2">bleh2</a> <!-- ELSEIF FORUM_ID eq 'whatever*' --><a href="blah*">bleh*</a> <!-- ELSE --><a href="blubb">blop</a> <!-- ENDIF --> <!-- ENDIF -->
instead ofeq
I think==
can be used and instead of single quote'
the double quote"
edit: after testing this I think you want to do that all in the wrong place. forumlist_body.html can't be it.