Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin: Simple Onlinelist


thomasklaiber
Member

@thomasklaiber

It’s your choice where you put ‘show_online_users()’ in your template. I suggest the following way if you use default theme:

– open bb-templates/front-page.php

– search for line 5 – 8:

<div id="hottags">

<h2><?php _e('Hot Tags'); ?></h2>

<p class="frontpageheatmap"><?php tag_heat_map(); ?>

</div>

– replace with:

<div id="hottags">

<h2><?php _e('Hot Tags'); ?></h2>

<p class="frontpageheatmap"><?php tag_heat_map(); ?>

<h2><?php _e('Online'); ?></h2>

<?php show_online_users(); ?>

</div>

– save as my-templates/front-page.php

I’ll fix the database setup and some other things as fast as i can =)

#edit: new version up, feel free to try it out

Skip to toolbar