PDA

View Full Version : [How To?] Side Navigation Tweak


Krumbz
06-24-2008, 01:14 AM
Question...

Okay I'm creating a side column on the left of my forums which I'll be turning into a navigation block.

Simple enough right.. well I would like to spice it up a little bit and have it show like this.

Link to forum and how much threads in each particular forum. How would I go about doing this?


Announcements (234)
Suggestions & Feedback (123)
Etc.. (212)

Dismounted
06-24-2008, 07:38 AM
You'll have to query the database to count the amount.

Krumbz
06-24-2008, 04:42 PM
How would I go about doing that.

Dismounted
06-25-2008, 07:34 AM
$vbulletin->db->query_read("
SELECT COUNT(postid), forumid
FROM " . TABLE_PREFIX . "post
WHERE forumid = X
");