The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Activity Modification Details »» | |||||||||||||||||||||||||
For vB3.7, see The vB3.7 version
This is the plugin/vB3.5/vB3.6 version of this hack This mod was developed on vB3.6.4, and tested for compatibility with vB3.5.4 Description This hack adds an activity metric for users to your forum; this metric takes into account a variable number of weeks. Also provided is a Junior/Normal/Senior member system based on this metric, and a longevity metric (user registered time as a percent of the amount of time the first user has been registered). Visiting each day and posting the configured amount of times per day for the configured number of weeks will yeild 100% activity. Posts are checked individually for each day, so days cannot be skipped then spammed up afterwards. The weight of visiting for the day relative to posting is configurable. Weeks are weighted so the most recent has a bigger impact on the activity percent than the most distant. When a user logs in with activity above the configured threshold, they are promoted from Junior Member to Member. When they log in with the configured amount of time as Member, they are promoted to Senior Member. You can configure the mod to also add secondary usergroups when these promotions happen. Complexity This modification requires 1 XML import, modification to 3 templates, and the addition of some CSS, depending on what options you choose Technical This hack adds 1 query to showthread for each user who posts in that page (or only 1 for the logged in user by configuration). In addition, the first time a member's post or profile is accessed during a day (GMT), 3 queries are performed to find that user's activity. By configuration, 1 query may be added to each page load to find the logged in user's "activity today". By configuration, 1 query may be added to each member profile view to find that member's "activity today". Upgradability This modification will import your settings and data from the 3.0/hack version Frequently Asked Questions
Note: To upgrade, with the old version still installed, go to the Add/Import Product link on the Manage Products page, select the XML file for the new version, choose Yes for overwrite, then click Import. 2.80 release update
Please click the install link if you install this hack I will support this hack in this thread on about a weekly basis. Show Your Support
|
Comments |
#132
|
|||
|
|||
when attempting to go to normal thread on forum with the debug I get this..
Unable to add cookies, header already sent. File: /hsphere/local/home/crotchro/crotchrocketracing.com/includes/class_postbit.php(251) : eval()'d code Line: 44 when I go to gallery it loads as normal and view source is the file I sent ya... Swear... |
#133
|
||||
|
||||
Quote:
Code:
<if condition="$show['avatar']"> <div class="smallfont"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a> </div> </if> <div class="smallfont"> <br /> <table class="WWU002postbit" cellspacing="2" cellpadding="0"> <tr> <td> <div class="pibu"><div class="pib"> <img src="$stylevar[imgdir_misc]/activity/textactivity.gif" /></td><td title="$WWU002_activityinfo"><img src="$stylevar[imgdir_misc]/activity/activity$WWU002_activitylevel.gif" class="i" /></div></td> </tr> <tr> <td> <div class="pibu"><div class="pib"> <img src="$stylevar[imgdir_misc]/activity/textlongevity.gif" /></td><td title="$WWU002_longevityinfo"><img src="$stylevar[imgdir_misc]/activity/long$WWU002_longevitylevel.gif" class="i" /> </div> </td> </tr> <tr> <td><div class="pibu"><div class="pib"><img src="$stylevar[imgdir_misc]/activity/texttoday.gif" /></td><td title="$WWU002_todayinfo"><img src="$stylevar[imgdir_misc]/activity/today{$WWU002_todaylevel}_$WWU002_maxtodaylevel.gif" class="i" /></div></td> </tr> <tr> </tr> </table> <if condition="$post['field2']"><div class="pibu"><div class="pib">$vbphrase[location_perm]: $post[field2] </div> </div></if> <if condition="$post['age']"><div class="pibu"><div class="pib">$vbphrase[age]: $post[age]</div></div></if> <div class="pibu"><div class="pib"> $vbphrase[posts]: $post[posts] </div></div> <if condition="$show['reputation']"><div class="pibu"><div class="pib"><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></div></if> <if condition="$post[icqicon] or $post[aimicon] or $post[msnicon] or $post[yahooicon]"><div class="pibu"><div class="pib">$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div></div></if> </div> I have galery as well im not good at coding but ill give you admin acces if you wantso you could mess with it. |
#134
|
||||
|
||||
Code:
<table class="WWU002postbit" cellspacing="2" cellpadding="0"> <tr> <td> <div class="pibu"><div class="pib"> <img src="$stylevar[imgdir_misc]/activity/textactivity.gif" /></td><td ></div></td> </tr> <tr> <td> <div class="pibu"><div class="pib"> <img src="$stylevar[imgdir_misc]/activity/textlongevity.gif" /></td><td title="$WWU002_longevityinfo"><img src="$stylevar[imgdir_misc]/activity/long$WWU002_longevitylevel.gif" class="i" /> </div> </td> </tr> <tr> <td><div class="pibu"><div class="pib"><img src="$stylevar[imgdir_misc]/activity/texttoday.gif" /></td><td title="$WWU002_todayinfo"><img src="$stylevar[imgdir_misc]/activity/today{$WWU002_todaylevel}_$WWU002_maxtodaylevel.gif" class="i" /></div></td> </tr> <tr> </tr> </table> Code:
<table class="WWU002postbit"><tr><td>
<div class="pibu"><div class="pib" title="$WWU002_activityinfo"><div style="float:left;width:100px;">Activity:</span> <img src="$stylevar[imgdir_misc]/activity/activity$WWU002_activitylevel.gif" class="i" /></div></div>
<div class="pibu"><div class="pib" title="$WWU002_longevityinfo"><div style="float:left;width:100px;">Longevity:</span> <img src="$stylevar[imgdir_misc]/activity/long$WWU002_longevitylevel.gif" class="i" /></div></div>
<div class="pibu"><div class="pib" title="$WWU002_todayinfo"><div style="float:left;width:100px;">Today:</span> <img src="$stylevar[imgdir_misc]/activity/today{$WWU002_todaylevel}_$WWU002_maxtodaylevel.gif" class="i" /></div></div>
</td></tr></table>
|
#135
|
||||
|
||||
Quote:
|
#136
|
|||
|
|||
I would complain but it would do no good, the Gallery uses a lot of thing differant from VB..
|
#137
|
||||
|
||||
installerd cewl thnx
|
#138
|
||||
|
||||
Quote:
any way as far as vbgallery is there a way to just make 2 dupliacat styles if you only use one style on your site and set it so when your in the gallere it uses the style without the activity hack? |
#139
|
||||
|
||||
ok I got the fonts to work but im tring to get the gray box to go all the way instead of ending at the text. anyone think they could help here is what I have now and how it looks.
<table class="WWU002postbit" cellspacing="2" cellpadding="0"> <tr> Code:
<td> <div class="pibu"><div class="pib">Activity:</span> </td><td title="$WWU002_activityinfo"> <img src="$stylevar[imgdir_misc]/activity/activity$WWU002_activitylevel.gif" class="i" /> </div></td>
</tr>
<tr>
<td> <div class="pibu"><div class="pib"> Longevity:</span> </td> <td title="$WWU002_longevityinfo"><img src="$stylevar[imgdir_misc]/activity/long$WWU002_longevitylevel.gif" class="i" /> </div> </td>
</tr>
<tr>
<td><div class="pibu"><div class="pib"> Today:</span> </td><td title="$WWU002_todayinfo"><img src="$stylevar[imgdir_misc]/activity/today{$WWU002_todaylevel}_$WWU002_maxtodaylevel.gif" class="i" /></div></td>
</tr>
<tr>
</tr>
</table>
|
#140
|
||||
|
||||
Installed quick and easy. Good Job. One issue.. See the image to see what I mean.
|
#141
|
||||
|
||||
Quote:
Mholtum, I'm not sure exactly what your issue is, but if it's the background, you just need to look at the div arround the other stuff and put it arround the activity mod table. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|