I have a navigation tabs in my navbar. One is for chat. I would like to display on this tab, how many members are in chat.
I tried this:
PHP Code:
<a href="http://www.mysite.com/forum/misc.php?do=flashchat&room=1" title="Chat Room" id="mytab" class="tab">Chat <if condition="$totalchatters=='0'"><else />($totalchatters)</if></a>
The conditional is added, so that it will not display if there are no chatters. I know this is likely not the best way to do it.
Anyway, the code $totalchatters does work on many pages, but not on blog.php, group.php and pages of various add ons.
Do you have any tips for what code to use?