Изменение репутации на vBulletin 3.8.4
Открываем шаблон Postbit_legacy
Находим:
Нажми для просмотра
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><div><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
и заменяем на:
Нажми для просмотра
<center>
<if condition="$show['reputation']">
<div>Репутация<if condition="$post[showreputation]">: <font color=<if condition="$post[reputation]>0">#005500<else /><if condition="$post[reputation]<0">#800000</if></if>><b>$post[reputation]</b></font><else /> скрыта</if>
<span id="reputationmenu_$post[postid]">
<a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]">[+/-]</a></span>
<script type="text/javascript"> vbrep_register("$post[postid]")</script>
</div>
<script type="text/javascript"> vbrep_register("$post[postid]")</script>
</div></if>
</center>
Если не хотите чтобы репутация была по середине уберите теги <center></center>
Можно поэсперементировать и перенести его нижи или выше других элементов постбита...
И удалить
Нажми для просмотра
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
</if>
Далее открываем шаблон memberinfo:
Находим:
Нажми для просмотра
<if condition="$prepared['reputationdisplay']">
<div id="reputation">$prepared[reputationdisplay]</div>
</if>
И заменяем на это:
Нажми для просмотра
<tr><td>
<div align=right>Репутация<if condition="$userinfo[showreputation]">: <font color=<if condition="$userinfo[reputation]>0">#005500<else /><if condition="$userinfo[reputation]<0">#800000</if></if>><b>$userinfo[reputation]</b></font><else /> скрыта</if>
</td></tr>
Далее открываем шаблон memberlist_resultsbit:
Находим:
Нажми для просмотра
<if condition="$show['reputationcol'] AND exec_switch_bg()"><td class="$bgclass">$userinfo[reputationdisplay]</td></if>
И заменяем на:
Нажми для просмотра
<if condition="$show['reputationcol'] AND exec_switch_bg()"><td class="$bgclass">
<font color="<if condition="$userinfo[reputation]>0">#005500<else /><if condition="$userinfo[reputation]<0">#800000</if></if>"><b>$userinfo[reputation]</b></font>
</td></if>