What im trying to do is add a second column in the navigation bar on all pages except the forum home - All the information appears if I remove the conditional (on all the pages) - If I add the <if> condition then none of the code shows up on any page.
any ideas?
PHP Code:
<if condition="$forum[forumid]!=0">
<td class="alt1">
<table width="200" border="0">
<tr>
<td align="center">
<a href="http://www.rustysoaptraders.com/forums/tickets.php"><b>Buy Tickets Here:</a> </b><br> <a href="http://www.coasttocoasttickets.com/concerts/">Concert Tickets</a>
- <a href="http://www.coasttocoasttickets.com/nfl/">NFL Tickets</a><br><a
href="http://www.coasttocoasttickets.com/mlb/">MLB Tickets</a><b></font></a><br>
</td>
</tr>
</table>
</td>
</if>
*** Update ***
I just realized that the conditional is working if im in a thread - but doesnt work on any Main forum page - when I say main forum page I mean everything outside of a post...
this is the code
PHP Code:
<if condition="$forum[forumid] != 0">
<td class="alt1">
<table width="200" border="0">
<tr>
<td align="center">
<a href="http://www.rustysoaptraders.com/forums/tickets.php"><b>Buy Tickets Here:</a> </b><br> <a href="http://www.coasttocoasttickets.com/concerts/">Concert Tickets</a>
- <a href="http://www.coasttocoasttickets.com/nfl/">NFL Tickets</a><br><a
href="http://www.coasttocoasttickets.com/mlb/">MLB Tickets</a><b></font></a><br>
</td>
</tr>
</table>
</td>
</if>