Hey Tubedog... very nice hack! I installed this a few weeks ago and everything went off without a hitch!
Here's something you may want to update in your stars hack distribution...Show stars on announcements page. I'm using v2.0.3 but should work on v2.0.x
Open announcement.php (NOT admin/announcement.php)
find:
PHP Code:
if ($post[receivepm]) {
eval("\$post[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
} else {
$post[pmlink] = "";
}
Below it add:
PHP Code:
$sli = 0;
while ($sli < $post[starlevel]) {
$post[stars] .= "<img src=\"images/stars/$post[starimg].gif\" border=\"0\">";
++$sli;
}
In announcebit template add $post[stars] where you want the stars to appear.
That's it! Now the stars of those who put up announcements will show under their usertitle when viewing the announcement.