vForums Support > vForums :: Support :: > Reputition

Reputition - Posted By goldigga (goldigga) on 30th May 08 at 6:31pm
http://benalmadena.vforums.co.uk/

is there anyway to remove the reputition from mini profiles

i have tried deleting the code but that made profiles go all funny {Shocked}

Re: Reputition - Posted By Michael (wrighty) on 30th May 08 at 6:47pm
make sure you remove this whole part:

<table cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"><font size="2">Reputation: {reputation}  </font></td>
</tr>
<tr>
<td rowspan="2">
<div style="clear: both;">
{foreach:negative_reputation}
<div style="height: 8px; width: 8px; background-color: #cc0000; float: left; margin: 3px;"></div>
{/foreach:negative_reputation}
{foreach:reputation}
<div style="height: 8px; width: 8px; background-color: #009900; float: left; margin: 3px;"></div>
{/foreach:reputation}
<br style="clear: both;">
</div>
</td>
<td align="center"><font size="1">{reputation_give}</font></td>
</tr>
<tr>
<td align="center"><font size="1">{reputation_take}</font></td>
</tr>
</table>

Re: Reputition - Posted By Ross (admin) on 30th May 08 at 7:02pm
I've removed it for you {Smile}

Re: Reputition - Posted By Teekay (Teekay) on 9th Jul 08 at 5:27pm
Could it be possible to also remove it on our forums as well? I'm not very good with the code and a lot of our users are abusing the reputation system and just dicking about with it.

http://renegades.virtualforums.co.uk/


Re: Reputition - Posted By Ross (admin) on 9th Jul 08 at 10:50pm
Posted By Teekay on 9th Jul 08 at 5:27pm
 
Could it be possible to also remove it on our forums as well? I'm not very good with the code and a lot of our users are abusing the reputation system and just dicking about with it.

http://renegades.virtualforums.co.uk/


Hi,

Are you the admin of that forum? If so, to remove the reputation system then go to "Admin -> Manage Templates". Select "Default Mini-Profile Temp" from the second drop down and click continue. In the textbox below "Registered Member Mini-Profile" remove the current text and replace it with this {Smile}

Code: HTML
 
  1. <font size="2">
  2.     <center>
  3.         {display_name}
  4.         <br />
  5.         {rank}
  6.         {if:warning}<br />{warning}{/if:warning}
  7.         {if:custom_title}<br />{custom_title}<br />{/if:custom_title}
  8.     </center>
  9.     {if:avatar}<center><br />{avatar}</center>{/if:avatar}
  10.     {if:personal_text}<center><br />{personal_text}</center>{/if:personal_text}
  11.     <br />
  12.     Posts: {posts}
  13.     <br />
  14.     {if:online}
  15.         Status: <b>Online</b>
  16.     {/if:online}
  17.     {ifnot:online}
  18.         Status: Offline
  19.     {/ifnot:online}
  20.     {if:gender}<br />Gender: {gender}{/if:gender}
  21.     {if:location}<br />Location: {location}{/if:location}
  22.     <br />
  23.     Joined: {joined}
  24.     <br />
  25.     {if:contact}
  26.         <br /><center>{contact}</center>
  27.     {/if:contact}
  28.     {additional_info}
  29. </font>