The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
Check your edits, in MEMBERINFO template.
|
#3
|
|||
|
|||
still having problem. ive attached my memberinfo template before the edits.
version 308 is my board. |
#4
|
|||
|
|||
First of all, remove your template from here, it is against you vB license to post vB files in public.
Second, the instructions are verified and work. Follow them carefully and you will have the hack working. As far as I can see, there are some additional things in your template, which are not standard vB, I can't help you much in this case, you will have to figure out where to add the changes for yourself. |
#5
|
|||
|
|||
ok so is it mandatory then to have this edit in the member info template?
it looks like it just shows the warning level the user is @ currently. do we need that for public eyes? we, staff, can view the warning levels through the admincp right? |
#6
|
|||
|
|||
Suppose your moderator wants to issue a non-post-related warning. How will he do it? Typically moderators do not have access to admincp, only in modcp.
And no, the changes in the public profile are not just to show the warning points. They are to allow you (staff) to issue warnings and see the warning points as well as the warnings. And no, the warning things do not show for public eyes, only for staff. |
#7
|
|||
|
|||
This is a great hack, it really is. It is a little interesting to say that it is for the staff eyes only but when I warn a user, the warned user will see the "alerts:1, warned: 1 or banned:1:" on their postbit.
How can I prevent from warned users (regular members) from seeing their own warned points on postbit? The view options is set to MGT only. Also I have the same issue with this view profile bit. seeing this "user's avatar:" or "userid=###". I like to leave the view profile as it was before.. Is this settings only for the staff to see this userid thing or does everyone sees it? |
#8
|
|||
|
|||
Well, the user should see his own warning records, shouldn't he? I mean how else can he know how many warning points he has, and how many warnings? He cannot see other users warnings, only his own.
As for the profile thing, there are two things that you have to add in your public user profile. One it the thing that shows the "Warn XYZ" and "View XYZ Warnings" (or View Your Warnings) links, and one is the user Alerts, Warnings, Warning Points and Bans data. These are well defined in the instructions, but here they are again for your convenience: This is the part that adds the Warn links etc.: Code:
<!-- checks for warning system --> <td class="thead" align="right"> <div class="smallfont" style="float:$stylevar[right]"> <if condition="THIS_SCRIPT=='member' AND $vboptions[warn_allowoffpost]==1 AND $buttons=='Text'"> <if condition="$showwarnlink==1"> <if condition="$vboptions['warn_allownotes']==1"> <a href='Warn.php?do=NoteUser&id=$post[userid]&post=0'>Add Note for $post[username]</a> </if> <a href='Warn.php?do=WarnUserNoPost&id=$userid'>Warn $userinfo[username] (non-post related)</a> <a href='Warn.php?do=ViewWarnings&id=$userinfo[userid]'>View $userinfo[username]'s Warnings</a> </if> <if condition="$showviewyourslink==1"> <a href='Warn.php?do=ViewMyWarnings'>View your Warnings</a> </if> </if> <if condition="THIS_SCRIPT=='member' AND $vboptions[warn_allowoffpost]==1 AND $buttons=='Buttons'"> <if condition="$showwarnlink==1"> <if condition="$vboptions['warn_allownotes']==1"> <a href='Warn.php?do=NoteUser&id=$post[userid]&post=0'><input type="button" class="button" name="warn" value="Add Note for $post[username]" accesskey="n" onClick="window.location='Warn.php?do=NoteUser&id=$post[userid]&post=0'"></a> </if> <a href='Warn.php?do=WarnUserNoPost&id=$userid'><input type="button" class="button" name="warn" value="Warn $post[username] (non-post related)" accesskey="w" onClick="window.location='Warn.php?do=WarnUserNoPost&id=$userid'"></a> <a href='Warn.php?do=ViewWarnings&id=$userinfo[userid]'><input type="button" class="button" name="warn" value="View $post[username]'s Warnings" accesskey="v" onClick="window.location='Warn.php?do=ViewWarnings&id=$userinfo[userid]'"></a> </if> <if condition="$showviewyourslink==1"> <a href='Warn.php?do=ViewMyWarnings'><input type="button" class="button" name="warn" value="View Your Warnings" accesskey="v" onClick="window.location='Warn.php?do=ViewMyWarnings'"></a> </if> </if> <!-- end of warning system --> Code:
<if condition="$showpoints==1"> <if condition="$userinfo[alerts]>0"> <font color="#ff0000"> Alerts: $userinfo[alerts]<BR> <font color="#000000"> </if> <if condition="$userinfo[warnings]>0"> <font color="#ff0000"> Warnings: $userinfo[warnings]<BR> <font color="#000000"> </if> <if condition="$userinfo[warning_level]>0"> <font color="#ff0000"> Warnings Level: $userinfo[warning_level]<BR> <font color="#000000"> </if> <if condition="$userinfo[warning_bans]>0"> <font color="#ff0000"> Number of bans: $userinfo[warning_bans]<BR> <font color="#000000"> </if> </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|