Tu further customize this hack you can edit the memberoftheday.php files, the settings are:
This is a comma separated list of the groups that will not be considered for the member of the day. Banned usergroups should be here.
$restrictedGroups = "3,4";
This are the minimum posts a user must have, if a user has less than 50 posts for example he cannot be selected member of the day
$posts = 50;
Since it makes no sense to make a user that visited the forum a month ago member of the day you can specify the number of days ago the user must have visited the forum. In this example if the user didn't visit the forum yesterday he is not elegible for member of the day
$lastactivity = 1;
Similar to the last setting only the user not only has to visit the forum but also has to post.
$lastpost = 1;
Users with less than x reputation will not be selected.
$reputation = 10;
As soon as a user is selected he cannot be selected again in this number of days. This gives other users a chance to be elected member of the day. In this example once a user was selected member of the day he cannot be selected again in 60 days.
$days = 60;
The member of the day shows the "favorite forum" of the user. This is the forum the user has more posts in. If by chance it is a private forum the name of the private forum will appear there. You might not want other users to see that because they cannot enter that forums anyway. Put a comma separated list of your private forums.
$privateForums = "1,2,3";
|