Moderator Notice in MCP

Twisted Fairytale

Retired Administrator
Joined
Jun 12, 2008
Messages
5,384
Reaction score
28
FP$
26,235
To add a Notice to your moderators in the Moderator Control Panel, use this tutorial.


To start off, go to your ACP. Then, go to Styles. On the left, select Templates. Then, choose the style you are using and push Edit. Find mcp_front.html in the dropdown box and select it. Now, copy this code.

Code:
<div class="panel">
              <div class="inner"><span class="corners-top"><span></span></span>
<h3>Moderator Notice</h3>
ENTER YOUR NOTICE HERE
<div class="inner"><span class="corners-bottom"><span></span></span>

</div>
</div>
</div>

The very top of the code should look like this:

Code:
<!-- INCLUDE mcp_header.html -->

<h2>{PAGE_TITLE}</h2>

<!-- IF S_SHOW_UNAPPROVED -->

	     <form id="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">

Add in your code after the code above so it looks like this:
Code:
<!-- INCLUDE mcp_header.html -->

<h2>{PAGE_TITLE}</h2>

<!-- IF S_SHOW_UNAPPROVED -->

	     <form id="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">

<div class="panel">
              <div class="inner"><span class="corners-top"><span></span></span>
<h3>Moderator Notice</h3>
ENTER YOUR NOTICE HERE
<div class="inner"><span class="corners-bottom"><span></span></span>

</div>
</div>
</div>


Be sure to edit in your Notice to the Moderators. You can also change "<h3>Moderator Notice</h3>" to what ever you want the title to be, but make sure you keep the <h3> tags.

NOTE: You may have to add / remove some </div> tags from the given code depending on what style you are using.
 
What would be even better is to add a simple mod to add notices without editing any of the templates. We would be able to do all of this via the ACP which would be cool. ~biggrin~
 
Back
Top Bottom