Simple Machines Community Forum

SMF Support => SMF 1.1.x Support => Topic started by: ExSpirit on January 23, 2007, 07:38:28 PM

Title: Admin panel for moderator - add another link
Post by: ExSpirit on January 23, 2007, 07:38:28 PM
How can I add another link to "Main" box? Below the Administration Center
and Support and Credits. I would Like to add some Link "Live help" and it would take him to mywebsite.com/chat.php
Title: Re: Admin panel for moderator - add another link
Post by: Oldiesmann on January 23, 2007, 09:20:43 PM
Themes/default/Admin.template.php

Find
Code (Lines 272-274) Select
echo '
</tr>
</table>';


Replace
echo '
</tr>
<tr valign="top" class="windowbg2">';
<td style="padding-bottom: 2ex;" width="50%">
<div style="font-weight: bold; font-size: 1.1em;"><a href="http://www.yourwebsite.com/chat.php">Live Help</a></div>
Click here for live help!
</td>
</tr>
</table>';