MyBB Community Forums

Full Version: Move Online Member List to Header Templates
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm currently using version 1.6.9 and have added a sidebar into the header portion of my site. What I'm trying to do, is move the $onlinemembers bit into the header templates so that the code will function like this:

<div id="sidebar">
   <div class="panel">{$welcomeblock}</div>
  <div class="panel">
      <div class="panel_header">Online</div>
      <p>{$onlinemembers}</p>
   </div>
</div>

According to this thread all I should have to do is copy the who's online and pertaining sections from index.php into global.php, but this hasn't produced the desired results.

Somehow, the portal page does this just fine. I've also tried substituting the code from portal.php into global.php and that doesn't seem to work either.

What do I need to move into my global.php file in order to have the WOL show up on every page when added to my header?