MyBB Community Forums

Full Version: How to detect if forum is category or normal?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to detect if forum is "category" without postsĀ or normal forum with posts??

How can i detect it in the templates thanks

How can i detect it in the templates thanks, what the conditional?
wtf? is that?
You can't check this in templates... You need a db query.

eg:
$query = $db->simple_select("forums", "fid", "type='c'");

$catfids = $db->fetch_array($query);
.....
Two types of check possible first is to check using the db query, second will be check for element on html view.
how do i hack into the db query and bring out the value of the forum

Quote:second will be check for element on html view.

what is this element?