Remove "warning" from forum

topthisfact

Paragon
Joined
Dec 14, 2009
Messages
2,244
Reaction score
0
FP$
636
I was wondering
how to disable warning from the whole forum.
I remmeber you can do it thru ACP, but i forgot where & can't find it

As i have reputation & warning is the same thing as reputation, so i think im going to have it remove.
 
Warnings and reputation are not the same; reputation allows users to give feedback about other users, and warnings allow moderators to warn users for breaking rules. Usually, a certain amount of warnings automatically bans a user.
 
Ohs
How do i get it remove from profile views
Like members from viewing the warning but leaving it on.
 
Hello,

That would not be possible, but what you can do instead is either remove the Warning line on the profile page or put an 'IF ADMIN' statement around it, just tell me what you like and I will give you instructions. 😉

Cheers,
 
Oh yes, i want it remove the warning line on the profile page but leaving the warning enable.
 
Hee,

What you have to do is:

Open: /styles/your style/template/memberlist_view.html

Find:
Code:
			<!-- IF U_NOTES or U_WARN -->
			<dt>{L_WARNINGS}: </dt>
			<dd><strong>{WARNINGS}</strong> [ <a href="{U_NOTES}">{L_VIEW_NOTES}</a> <!-- IF U_WARN --> | <a href="{U_WARN}">{L_WARN_USER}</a> <!-- ENDIF -->]</dd>
			<!-- ENDIF -->

Either delete it entirely, or you can do the following so it only shows for Administrators:

Find:
Code:
 			<!-- IF U_NOTES or U_WARN -->

Replace with:
Code:
 			<!-- IF (U_NOTES or U_WARN) and U_ACP -->

Cheers,
 
Just change:

Code:
<!-- IF (U_NOTES or U_WARN) and U_ACP -->

To:

Code:
<!-- IF (U_NOTES or U_WARN) and U_MCP -->

Note: That will show to everyone with Moderation abilities, including Administrators etc.
 
Back
Top Bottom