Quote:
Originally Posted by TheInsaneManiac
There should not be any changes? The template and php files are already there. I just don't understand why your tutorial is not working.
|
This article was made to use existing templates. If you didn't put your information into a template, then it's not going to work.
This is down and dirty so you will have to caress it to look how you want. Add all the stuff to the member.php page that it said in the article (make sure you add it *before* the "member_build_blocks_start" hook gets called or the information won't be available to be displayed!), then when you get to the part about adding to the template, do this:
Create a new template called "memberinfo_block_curactive" with this:
HTML Code:
<!-- Currently Active Users -->
<div id="users_mini" class="tborder content_block">
<h4 class="thead block_title">
<a href="#top" class="collapse_gadget" onclick="return toggle_collapse('users_mini')"><img id="collapseimg_users_mini" src="$stylevar[imgdir_button]/collapse_generic{$vbcollapse['collapseimg_users_mini']}.gif" alt="" border="0" /></a>
<a name="users_mini"></a>
<span class="block_name">Currently Active Users</span>
</h4>
<div class="block_content" id="collapseobj_users_mini" style="{$vbcollapse['collapseobj_users_mini']}"><span class="alt1 smallfont block_row"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase><br>$activeusers</span></div>
</div>
<!-- / Currently Active Users -->
Create a plugin at hook location "member_build_blocks_start" with this:
PHP Code:
eval('$template_hook[profile_right_first] .= "' . fetch_template('memberinfo_block_curactive') . '";');
I have NOT tested it on a live site. Use at your own risk!!!!!