akz645
08-10-2015, 09:00 PM
What is this?
This is a small Template edit that lets you choose from the Usergroup Manger (AdminCP) which Usergroups you want to allow permission from their UserCP to hide Reputation Power from their Postbit.
In green is the coding for Reputation Points, in case you want to add that into your Postbit.
I've only tested this on vbulletin 4.2.3- Although it should work on all vBulletin 4.X.X products.
This is how to globally enable/disable Rep Power/ Reputation for your postbit:
Admin CP -> Settingss -> Options -> Thread Display Options (showthread) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153279&d=1441256422) -> Reputation Power (tick) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153280&d=1441256422). => If disabled (not ticked), regardless of what users do, it will not appear in the Postibt.
This is how to enable/disable chosen Usergroups the option to hide their Reputation via UserCP:
AdminCP -> Usergroup -> Usergroup Manager (https://vborg.vbsupport.ru/attachment.php?attachmentid=153281&d=1441256422) -> [Select Usergroup] Go (https://vborg.vbsupport.ru/attachment.php?attachmentid=153282&d=1441256461) -> Can Hide Reputation from Others: Yes (https://vborg.vbsupport.ru/attachment.php?attachmentid=153283&d=1441256461)
=> If disabled (No), that usergroup will always have their Reputation shown (if Reputation isn't globally disabled from AdminCP).
Instructions
Postbit or Postbit_Legacy Template (whichever one you use):
AdminCP -> Styles & Templates -> Search Templates -> postbit_legacy [Pick your style too] (https://vborg.vbsupport.ru/attachment.php?attachmentid=153273&d=1441250074) -> postbit_legacy (edit) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153274&d=1441250113)
Note: If postbit_legacy doesn't work, search "postbit (https://vborg.vbsupport.ru/attachment.php?attachmentid=153275&d=1441250113)" which is located below Postbit Templates (https://vborg.vbsupport.ru/attachment.php?attachmentid=153276&d=1441250113).
Find:
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
</vb:if>
</vb:if>
</dl>
</vb:if>
Replace with:
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$post['showreputation']">
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
<dt>{vb:rawphrase reputation}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reputation}</dd>
</vb:if>
</vb:if>
</vb:if>
</dl>
</vb:if>
Green: That's the code for reputation points to appear in your postbit. Don't add that, if you don't want to display it.
Red: The essential code that I added in, for this to all work.
Note:
Nothing else has been changed. If you have done custom edits before, then feel free to only add in the red and/or green parts only, into the correct positions.
SAVE
That's pretty much it :)
Go to settings (UserCP), General Settings and go to 'Reputation Level:' (https://vborg.vbsupport.ru/attachment.php?attachmentid=153284&d=1441256461) - Users (if Usergroup has permission) can choose their preference.
Note 2:
If you want the same thing as my screenshot, then look at the post below- Step B.
This is a small Template edit that lets you choose from the Usergroup Manger (AdminCP) which Usergroups you want to allow permission from their UserCP to hide Reputation Power from their Postbit.
In green is the coding for Reputation Points, in case you want to add that into your Postbit.
I've only tested this on vbulletin 4.2.3- Although it should work on all vBulletin 4.X.X products.
This is how to globally enable/disable Rep Power/ Reputation for your postbit:
Admin CP -> Settingss -> Options -> Thread Display Options (showthread) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153279&d=1441256422) -> Reputation Power (tick) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153280&d=1441256422). => If disabled (not ticked), regardless of what users do, it will not appear in the Postibt.
This is how to enable/disable chosen Usergroups the option to hide their Reputation via UserCP:
AdminCP -> Usergroup -> Usergroup Manager (https://vborg.vbsupport.ru/attachment.php?attachmentid=153281&d=1441256422) -> [Select Usergroup] Go (https://vborg.vbsupport.ru/attachment.php?attachmentid=153282&d=1441256461) -> Can Hide Reputation from Others: Yes (https://vborg.vbsupport.ru/attachment.php?attachmentid=153283&d=1441256461)
=> If disabled (No), that usergroup will always have their Reputation shown (if Reputation isn't globally disabled from AdminCP).
Instructions
Postbit or Postbit_Legacy Template (whichever one you use):
AdminCP -> Styles & Templates -> Search Templates -> postbit_legacy [Pick your style too] (https://vborg.vbsupport.ru/attachment.php?attachmentid=153273&d=1441250074) -> postbit_legacy (edit) (https://vborg.vbsupport.ru/attachment.php?attachmentid=153274&d=1441250113)
Note: If postbit_legacy doesn't work, search "postbit (https://vborg.vbsupport.ru/attachment.php?attachmentid=153275&d=1441250113)" which is located below Postbit Templates (https://vborg.vbsupport.ru/attachment.php?attachmentid=153276&d=1441250113).
Find:
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
</vb:if>
</vb:if>
</dl>
</vb:if>
Replace with:
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$post['showreputation']">
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
<dt>{vb:rawphrase reputation}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reputation}</dd>
</vb:if>
</vb:if>
</vb:if>
</dl>
</vb:if>
Green: That's the code for reputation points to appear in your postbit. Don't add that, if you don't want to display it.
Red: The essential code that I added in, for this to all work.
Note:
Nothing else has been changed. If you have done custom edits before, then feel free to only add in the red and/or green parts only, into the correct positions.
SAVE
That's pretty much it :)
Go to settings (UserCP), General Settings and go to 'Reputation Level:' (https://vborg.vbsupport.ru/attachment.php?attachmentid=153284&d=1441256461) - Users (if Usergroup has permission) can choose their preference.
Note 2:
If you want the same thing as my screenshot, then look at the post below- Step B.