I finally solved my problem of stars not showing in the post with vb203
when i installed i edited only funcions.php and not showtread.php and guess what i was wrong !
i edited like mentioned by Pie'oh'Pah but i also edited the showtread with the same code and now is perfectly working !
Quote:
Originally posted by Pie'oh'pah
Hi Joey,
instead of showthread.php you need to edit the admin/functions.php !
**Find
PHP Code:
if ($post['receivepm'] and $enablepms==1) {
eval("\$post[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
} else {
$post[pmlink] = "";
}
**Right under it, add
PHP Code:
$sli = 0;
while ($sli < $post[starlevel]) {
$post[stars] .= "<img src=\"images/stars/$post[starimg].gif\" border=\"0\">";
++$sli;
}
That's it.  
-Alex
|