找到代码:
function showstars($num) {
global $starthreshold;
3.
$alt = 'alt="Rank: '.$num.'"';
if(empty($starthreshold)) {
for($i = 0; $i < $num; $i++) {
echo '![]()';
}
} else {
for($i = 3; $i > 0; $i--) {
$numlevel = intval($num / pow($starthreshold, ($i - 1)));
$num = ($num % pow($starthreshold, ($i - 1)));
for($j = 0; $j < $numlevel; $j++) {
echo '![]()';
}
}
}
}
下面加上
function showrankstars($num) {
echo "![](images/rank/$num.gif title= "Rank: ")";
}
第2步:、templates\default\viewthread.htm
找到
showstars
替换成
showrankstars
第3步:、templates\default\viewpro.htm
找到
showstars
替换成
showrankstars
有三个改后两个就行了,根据自己需要来改,我自己只改了第2个
第4步:templates\default\my_grouppermission.htm
找到
showstars
替换成
showrankstars