MyBB Community Forums

Full Version: How can I show {$teamOnline} in Footer?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using this plugin: https://community.mybb.com/mods.php?action=view&pid=183

I'd like to be able to show this it in the Footer, instead of only the Index.

How can I do this?
Open up plugin file teamOnline.php, find the following:

$plugins->add_hook('index_start', ['teamOnline', 'teamOnline_start']);

Replace with:

$plugins->add_hook('global_start', ['teamOnline', 'teamOnline_start']);

Try that.
(2019-03-21, 12:04 AM)Wires Wrote: [ -> ]Open up plugin file teamOnline.php, find the following:

$plugins->add_hook('index_start', ['teamOnline', 'teamOnline_start']);

Replace with:

$plugins->add_hook('global_start', ['teamOnline', 'teamOnline_start']);

Try that.

This worked. Thanks for the quick assistance Wires!
welll working