The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
You want to display it on the navbar on all pages (not just your chat page)? Then you need to create a plugin that queries the database for that value, then registers it to the navbar template. Then you can edit the navbar template and insert that value where you want it. Something like:
Code:
$chatters = $vbulletin->db->query_first("SELECT chatters FROM some_table"); vB_Template::preRegister('navbar', array('chatters' => $chatters['chatters'])); then in the navabr template Code:
{vb:raw chatters} The hook choice is a little tricky (or maybe someone else knows better), but you'd ideally not want to add the query unless it's needed, but since the navbar is rendered in a bunch of separate scripts there doesn't seem to be any way to know for sure when it's needed. In any case global_setup_complete should work. |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|