
## This plugin version is for vBulletin 3.5.0 beta ##


A Simple addition to display all members who have posted in the forum today.

This may not be copied, reproduced or published elswhere without my permission.  

Paul Marsden - vbhacks@marsden-family.com



* Note - Steps 1 & 2 are only required if you have not previously installed this hack on your forum. *



Step 1.

In the FORUMHOME Template ;

Find;

<!-- end logged-in users -->


and add after it;

<!-- Todays posters -->
<tbody>
	<tr>
		<td class="thead" colspan="2">
			<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayposters')"><img id="collapseimg_forumhome_todayposters" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_todayposters].gif" alt="" border="0" /></a>
			Total members that have posted today: $posterstoday
		</td>
	</tr>
</tbody>
<tbody id="collapseobj_forumhome_todayposters" style="$vbcollapse[collapseobj_forumhome_todayposters]">
	<tr>
		<td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users online today" border="0" /></td>
		<td class="alt1" width="100%"><div class="smallfont">$posttoday</div></td>
	</tr>
</tbody>
<!-- End Todays posters -->



Step 2.

[This is optional, but will speed up the query if you have a large number of members]


Run the following SQL query;

ALTER TABLE user ADD INDEX (lastpost) ;



Step 3.

Install the plugin using the supplied XML file.


