Staff Page Mod

Started by SMFHacks.com Team, May 18, 2006, 06:53:57 PM

Previous topic - Next topic

mforum

Quote from: ladyshanae on July 22, 2006, 09:08:37 AM
My moderators are all in special groups, so I just removed the local moderators completely from the staff.template.php page. 

Do you need them displayed?  If not, I can tell you which portion of the code to remove :)

Yes, i would like that please.

ladyshanae

To remove local moderators, simply remove this code from staff.template.php:

//Seperate the groups from the local mods.
echo '<br />';


//Show local mod's
$localmods = array();
//Stores the boards that member is a moderateor of
$bmods = array();

$query3 = db_query("SELECT m.ID_GROUP, m.ID_MEMBER, m.realName, m.lastLogin, m.dateRegistered, m.ICQ, m.AIM, m.YIM, m.MSN, m.hideEmail, m.emailAddress, b.name, b.ID_BOARD
FROM {$db_prefix}members AS m, {$db_prefix}moderators AS o, {$db_prefix}boards AS b WHERE o.ID_MEMBER = m.ID_MEMBER AND b.ID_BOARD = o.ID_BOARD AND $user_info[query_see_board]", __FILE__, __LINE__);
if(db_affected_rows() != 0)
{
echo '<table border="0" cellspacing="0" cellpadding="2" width="100%">';

echo '<tr>';
echo '<td class="catbg2" width="25%">' . $txt['smfstaff_local'] . '</td>';
echo '<td class="catbg2" width="25%">' . $txt['smfstaff_lastlogin'] . '</td>';
echo '<td class="catbg2" width="25%">' . $txt['smfstaff_forums'] . '</td>';
echo '<td class="catbg2" width="25%">' . $txt['smfstaff_contact'] . '</td>';
echo '</tr>';
while ($row3 = mysql_fetch_assoc($query3))
{
@$bmods[$row3['ID_MEMBER']] .= '<a href="' . $scripturl . '?board=' . $row3['ID_BOARD'] . '">' . $row3['name']  . '</a><br />';

$localmods[$row3['ID_MEMBER']]  = array(
'id' => $row3['ID_MEMBER'],
'realName' => $row3['realName'],
'lastLogin' => $row3['lastLogin'],
'dateRegistered' => $row3['dateRegistered'],
'hideEmail'  => $row3['hideEmail'],
'emailAddress' => $row3['emailAddress'],
'ICQ' => $row3['ICQ'],
'YIM' => $row3['YIM'],
'AIM' => $row3['AIM'],
'MSN' => $row3['MSN'],
'forums' =>  $bmods[$row3['ID_MEMBER']],
);

}

foreach ($localmods  as $id => $data)
{
echo '<tr>';
echo '<td class="windowbg"><a href="' . $scripturl . '?action=profile;u=' . $data['id'] . '">' . $data['realName'] . '</a></td>';
echo '<td class="windowbg">' . timeformat($data['lastLogin']) . '</td>';
echo '<td class="windowbg">' . $data['forums'] . '</td>';
//echo '<td class="windowbg">' .  timeformat($data['dateRegistered']) . '</td>';
echo '<td class="windowbg" align="center">';

//Send email row
if($data['hideEmail'] == 0)
echo '<a href="mailto:', $data['emailAddress'], '"><img src="' . $settings['images_url'] . '/email_sm.gif" alt="email" /></a>&nbsp;';


if($data['ICQ'] != '')
echo '<a href="http://www.icq.com/whitepages/about_me.php?uin=' . $data['ICQ'] . '" target="_blank"><img src="http://status.icq.com/online.gif?img=5&amp;icq=' . $data['ICQ'] . '" alt="' . $data['ICQ'] . '" width="18" height="18" border="0" /></a>&nbsp;';
if($data['AIM'] != '')
echo '<a href="aim:goim?screenname=' . urlencode(strtr($data['AIM'], array(' ' => '%20'))) . '&amp;message=' . $txt['aim_default_message'] . '"><img src="' . $settings['images_url'] . '/aim.gif" alt="' . $data['AIM'] . '" border="0" /></a>&nbsp;';
if($data['YIM'] != '')
echo '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . urlencode($data['YIM']) . '"><img src="http://opi.yahoo.com/online?u=' . urlencode($data['YIM']) . '&amp;m=g&amp;t=0" alt="' . $data['YIM'] . '" border="0" /></a>&nbsp;';
if($data['MSN'] != '')
echo '<a href="http://members.msn.com/' . $data['MSN'] . '" target="_blank"><img src="' . $settings['images_url'] . '/msntalk.gif" alt="' . $data['MSN'] . '" border="0" /></a>&nbsp;';

//Send PM row
echo '<a href="' . $scripturl . '?action=pm;sa=send;u=' . $data['id'] . '">' . $txt['smfstaff_sendpm'] . '</a>';

echo '</td>';
echo '</tr>';
}

echo '</table>';
}
mysql_free_result($query3);


Hope that works for you!

mforum

It worked fine  :)   looks much better now  ;)
Thanks

Parijs

Im using the WOW DK theme for my SMF 1.1 RC2 forum, I installed this mod but how can I get it to show up on my theme?  What file do I edit and what should I add to it?  Any help would be greatly appreciated

Parijs

Bigguy

All you have to add is a button to get to it. Like "help", "home", "Message" You can do that in the "Index.template.php" file.

Parijs

I wanna cry  :'(  I am a total newb at this :( I dont know what to add and where I should add it.  Could I ask for someone's help on this?  Pretty please...I would be so greatful :-[

<?php
// Version: 1.1 RC2; index

/* This template is, perhaps, the most important template in the theme.  It
contains the main template layer that displays the header and footer of
the forum, namely with main_above and main_below.  It also contains the
menu sub template, which appropriately displays the menu; the init sub
template, which is there to set the theme up; (init can be missing.) and
the linktree sub template, which sorts out the link tree.

The init sub template should load any data and set any hardcoded options.

The main_above sub template is what is shown above the main content, and
should contain anything that should be shown up there.

The main_below sub template, conversely, is shown after the main content.
It should probably contain the copyright statement and some other things.

The linktree sub template should display the link tree, using the data
in the $context['linktree'] variable.

The menu sub template should display all the relevant buttons the user
wants and or needs.

For more information on the templating system, please see the site at:
http://www.simplemachines.org/
*/

// Initialize the template... mainly little settings.
function template_init()
{
global $context$settings$options$txt;

/* Use images from default theme when using templates from the default theme?
if this is 'always', images from the default theme will be used.
if this is 'defaults', images from the default theme will only be used with default templates.
if this is 'never' or isn't set at all, images from the default theme will not be used. */
$settings['use_default_images'] = 'never';

/* What document type definition is being used? (for font size and other issues.)
'xhtml' for an XHTML 1.0 document type definition.
'html' for an HTML 4.01 document type definition. */
$settings['doctype'] = 'xhtml';

/* The version this template/theme is for.
This should probably be the version of SMF it was created for. */
$settings['theme_version'] = '1.1 RC2';

/* Set a setting that tells the theme that it can render the tabs. */
$settings['use_tabs'] = false;

/* Use plain buttons - as oppossed to text buttons? */
$settings['use_buttons'] = false;

/* Show sticky and lock status seperate from topic icons? */
$settings['seperate_sticky_lock'] = false;
}

function 
get_collapsed_state($object_id)
{
    global 
$settings;
    
    if(isset(
$settings['collapsed_sects']) && !empty($settings['collapsed_sects'])) {
if(array_search($object_id$settings['collapsed_sects']) === false)
    return false;
else
    return true;
    }
    return 
false;
}

// The main sub template above the content.
function template_main_above()
{
global $context$settings$options$scripturl$txt$forum_version$language$modSettings;

$csect_cookie 'SMF_user_' $context['user']['id'] . '_CSect';

if(isset($_COOKIE[$csect_cookie]) && !empty($_COOKIE[$csect_cookie]))
    $settings['collapsed_sects'] = explode("\n"$_COOKIE[$csect_cookie]);
$settings['csect_cookie'] = $csect_cookie;

// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"'
$context['right_to_left'] ? ' dir="rtl"' ''' xml:lang="'$txt['lang_dictionary'], '" lang="'$txt['lang_dictionary'], '"><head>
<meta http-equiv="Content-Type" content="text/html; charset='
$context['character_set'], '" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="description" content="'
$context['page_title'], '" />
<meta name="keywords" content="PHP, MySQL, bulletin, board, free, open, source, smf, simple, machines, forum" />
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/script.js?rc2"></script>
<script language="JavaScript" type="text/javascript" src="'
$settings['theme_url'], '/collapse.js?rc2"></script>';

if(empty(
$settings['show_dhtml_menu']))
echo '
<script language="JavaScript" type="text/javascript" src="'
$settings['theme_url'], '/menu.js?rc2"></script>';

echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "'
$settings['theme_url'], '";
var smf_images_url = "'
$settings['images_url'], '";
var smf_scripturl = "'
$scripturl'";
// ]]></script>
<title>'
$context['page_title'], '</title>';

// The ?rc2 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/style.css?rc2" />';



// Any color set by user?
if (isset($options['theme_color']))
$settings['theme_user_color'] = $options['theme_color'];

// If not set, or if not allowed to set
if(!isset($options['theme_color']) || (isset($settings['allow_color_change']) && $settings['allow_color_change'] == 'no'))
{
// Defaults.
$options['theme_color'] = isset($settings['theme_default_color']) ? $settings['theme_default_color'] : '10';
$settings['theme_user_color'] = $options['theme_color'];
}

if (empty($settings['theme_user_color']))
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/default_orc.css?rc2" />';
else
{
if ($settings['theme_user_color'] == 0)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/default_orc.css?rc2" />';
if ($settings['theme_user_color'] == 1)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/blue_human.css?rc2" />';
if ($settings['theme_user_color'] == 2)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/blue_draenei.css?rc2" />';
if ($settings['theme_user_color'] == 3)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/red_b_elves.css?rc2" />';
if ($settings['theme_user_color'] == 4)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/blue_elves.css?rc2" />';
if ($settings['theme_user_color'] == 5)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/green_undead.css?rc2" />';
if ($settings['theme_user_color'] == 6)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/brown_dwarves.css?rc2" />';
if ($settings['theme_user_color'] == 7)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/brown_gnomes.css?rc2" />';
if ($settings['theme_user_color'] == 8)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/red_troll.css?rc2" />';
if ($settings['theme_user_color'] == 9)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/brown_tauren.css?rc2" />';
if ($settings['theme_user_color'] == 10)
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/maincolorcss/grey_logo.css?rc2" />';
}

if(empty(
$settings['show_dhtml_menu']))
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/menu.css?rc2" />';

echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/print.css?rc2" media="print" />
<!--[if IE 5 ]><link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/ie5.css?rc2"><![endif]-->';
/* Internet Explorer 4/5 and Opera 6 just don't do font sizes properly. (they are big...)
Thus, in Internet Explorer 4, 5, and Opera 6 this will show fonts one size smaller than usual.
Note that this is affected by whether IE 6 is in standards compliance mode.. if not, it will also be big.
Standards compliance mode happens when you use xhtml... */
if ($context['browser']['needs_size_fix'])
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/fonts-compat.css" />';

// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="help" href="'
$scripturl'?action=help" target="_blank" />
<link rel="search" href="' 
$scripturl '?action=search" />
<link rel="contents" href="'
$scripturl'" />';

// If RSS feeds are enabled, advertise the presence of one.
if (!empty($modSettings['xmlnews_enable']))
echo '
<link rel="alternate" type="application/rss+xml" title="'
$context['forum_name'], ' - RSS" href="'$scripturl'?type=rss;action=.xml" />';

// If we're viewing a topic, these should be the previous and next topics, respectively.
if (!empty($context['current_topic']))
echo '
<link rel="prev" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=prev" />
<link rel="next" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=next" />';

// If we're in a board, or a topic for that matter, the index will be the board's index.
if (!empty($context['current_board']))
echo '
<link rel="index" href="' 
$scripturl '?board=' $context['current_board'] . '.0" />';

// We'll have to use the cookie to remember the header...
if ($context['user']['is_guest'])
$options['collapse_header'] = !empty($_COOKIE['upshrink']);

// Output any remaining HTML headers. (from mods, maybe?)
echo $context['html_headers'], '

<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var current_header = '
, empty($options['collapse_header']) ? 'false' 'true'';

function shrinkHeader(mode)
{'
;

// Guests don't have theme options!!
if ($context['user']['is_guest'])
echo '
document.cookie = "upshrink=" + (mode ? 1 : 0);'
;
else
echo '
smf_setThemeOption("collapse_header", mode ? 1 : 0, null, "'
$context['session_id'], '");';

echo '
document.getElementById("upshrink").src = smf_images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");

document.getElementById("upshrinkHeader").style.display = mode ? "none" : "";

current_header = mode;
}
// ]]></script>
</head>
<body>
<a name="top_t" id="top_t"></a>'
;

// Because of the way width/padding are calculated, we have to tell Internet Explorer 4 and 5 that the content should be 100% wide. (or else it will assume about 108%!)
echo '
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" >
<tbody>
<tr><td align="left" width="170"'
, empty($settings['header_logo_url']) ? ' class="topbg_l"' ' class="topbg_l2"'' height="38">&nbsp;</td><td colspan="2" align="left" class="topbg" valign="middle">&nbsp;
</td><td align="right" width="37" class="topbg_r" valign="top">
&nbsp;
</td>
</tr>  </tbody>
</table>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tbody>
    <tr>
      <td width="15" class="area_l"><img src="'
$settings['images_url'], '/area_blank.gif" border="0" alt="" /></td><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="hd_border_l"><img src="'
$settings['images_url'], '/hd_border_l.gif" border="0" alt="" /></td>
<td id="headerarea" align="center" width="100%" style="position: relative; padding: 0 0 0 0;">'
;

// The logo and the three info boxes.
echo '
<table cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="position: relative;">
<tr id="upshrinkHeader"'
, empty($options['collapse_header']) ? '' ' style="display: none;" ''>
<td valign="top">
<div>
<table width="100%"'
, empty($settings['header_logo_url']) ? ' class="headerbodies"' ' class="headerbodies3"'' cellpadding="0" cellspacing="5" border="0">
<tr><td width="10%"><!--blank--></td>
<td width="60%" valign="top" class="headertext" align="left" height="65" >
<div style="width: 100%; overflow: hidden;">
'
;

// This part is the logo and forum name.  You should be able to change this to whatever you want...

if (empty($settings['header_logo_url']))
echo '
<div style="font-family: Georgia, sans-serif; font-size: 30px; padding: 5px 0 12px 90px; white-space: nowrap; float: left; background-image: url(images/header_bg_r.png;">'
$context['forum_name'], '</div>
<div style="float: right; width: 80%;"><!-- blank --></div>'
;
else
echo '
<img src="'
$settings['header_logo_url'], '" alt="'$context['forum_name'], '" border="0" />';

echo '
</div></td>'
;

if (!empty($context['user']['avatar']))
{
if(empty($settings['top_avatar_resize']))
{
$context['user']['avatar']['image'] = strtr($context['user']['avatar']['image'], array("class=\"avatar\"" => "class=\"avatar_t\""));
}
echo '<td valign="middle">'$context['user']['avatar']['image'], '</td>';
}

echo '
<td width="30%" class="headertext_r" valign="top" align="left" nowrap="nowrap">'
;

// If the user is logged in, display stuff like their name, new messages, etc.
if ($context['user']['is_logged'])
{
echo '
'
$txt['hello_member'], ' <b>'$context['user']['name'], '</b>';

// Only tell them about their messages if they can read their messages!
if ($context['allow_pm'])
echo ', '$txt[152], ' <a href="'$scripturl'?action=pm">'$context['user']['messages'], ' '$context['user']['messages'] != $txt[153] : $txt[471], '</a>'$txt['newmessages4'], ' '$context['user']['unread_messages'], ' '$context['user']['unread_messages'] == $txt['newmessages0'] : $txt['newmessages1'];
echo '.<br />';

// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<b>'
$txt[616], '</b><br />';

// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
'
$context['unapproved_members'] == $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="'$scripturl'?action=viewmembers;sa=browse;type=approve">'$context['unapproved_members'] == $txt['approve_member'] : $context['unapproved_members'] . ' ' $txt['approve_members'], '</a> '$txt['approve_members_waiting'], '<br />';

// Show the total time logged in?
if (!empty($context['user']['total_time_logged_in']))
{
echo '
'
$txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
}

echo '
<a href="'
$scripturl'?action=unread">'$txt['unread_since_visit'], '</a><br />
<a href="'
$scripturl'?action=unreadreplies">'$txt['show_unread_replies'], '</a><br />';

}
// Otherwise they're a guest - so politely ask them to register or login.
else
{
echo '
'
$txt['welcome_guest'], '<br />
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/sha1.js"></script>

<form action="'
$scripturl'?action=login2" method="post" style="margin: 3px 1ex 1px 0; text-align: left;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' $context['session_id'] . '\');"' '''>
<input type="text" name="user" size="10" /> <input type="password" name="passwrd" size="10" />
<select name="cookielength">
<option value="60">'
$txt['smf53'], '</option>
<option value="1440">'
$txt['smf47'], '</option>
<option value="10080">'
$txt['smf48'], '</option>
<option value="302400">'
$txt['smf49'], '</option>
<option value="-1" selected="selected">'
$txt['smf50'], '</option>
</select>
<input type="submit" value="'
$txt[34], '" /><br />
'
$txt['smf52'], '
<input type="hidden" name="hash_passwrd" value="" />
</form>'
;
}
echo '
</td></tr>
</table>
</div>
</td>

</tr>
</table>'
;

echo '
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="maintab_bgba" align="left" nowrap="nowrap">
<div style="width: 100%; overflow: auto;">'
;
// Show the menu here, according to the menu sub template.
template_menu();
echo '
</div></td><td class="maintab_bgb" align="right" width="25"><div><a href="#top_t" onclick="shrinkHeader(!current_header); return false;"><img id="upshrink" src="'
$settings['images_url'], '/', empty($options['collapse_header']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" style="margin: 2px 4px 2px 0;" border="0" /></a></div></td>
</tr>
</table>
<table width="100%" class="headerbodies2a" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="headernews" height="24" width="95%" align="left"><!-- News -->'
;

if (!empty($settings['enable_news']))
echo '
<span style="text-transform: uppercase; font-weight: bold;">'
$txt[102], '</span> :  '$context['random_news_line'] , ' ';

echo '
</td>
<td class="currenttime" width="5%" valign="top" nowrap="nowrap">'
$context['current_time'] , '</td>
</tr>
</table>
<table width="100%" class="headerbodies2" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="middle" align="left" style="padding: 8px 0px 8px 10px;" width="100%">'
theme_linktree(), '</td>
<td valign="middle"><a href="'
$scripturl'?action=search;advanced" class="searchb" title="'$txt['smf298'], '"><img src="'$settings['images_url'], '/search2_f.gif" border="0" alt="'$txt['smf298'], '" /></a></td>
<td valign="middle" align="right" style="padding: 8px 10px 8px 0px;">
<form action="'
$scripturl'?action=search2" method="post" style="margin: 0; margin-top: 0px;">
<input type="text" name="search" value="'
$txt[182], '..." onfocus="this.value = \'\';" onblur="if(this.value==\'\') this.value=\''$txt[182], '...\';" style="width: 150px;" />';

// Search within current topic?
if (!empty($context['current_topic']))
echo '
<input type="hidden" name="topic" value="'
$context['current_topic'], '" />';

// If we're on a certain board, limit it to this board ;).
elseif (!empty($context['current_board']))
echo '
<input type="hidden" name="brd['
$context['current_board'], ']" value="'$context['current_board'], '" />';

echo '
</form>
</td>
</tr>
</table>
<table width="100%" class="headerbodies2" cellpadding="0" cellspacing="0" border="0">
<tr><td class="hd_bottom_l" width="46px"></td><td class="hd_bottom" height="24"></td><td class="hd_bottom_r" width="46px"></td></tr></table>'
;

echo '
</td><td class="hd_border_r"><img src="'
$settings['images_url'], '/hd_border_r.gif" border="0" alt="" /></td>
</tr>
</table>'
;

// The main content should go here.  A table is used because IE 6 just can't handle a div.

echo '
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="hd_border_l" style="width: 8px; background-color: #000;"><!-- blank --></td>
<td class="main_area_tl" style="width: 16px;"><!-- tl --></td>
<td class="main_area_tc" height="3"><!-- tc --></td>
<td class="main_area_tr" style="width: 16px;"><!-- tr --></td>

<td class="hd_border_r" style="width: 8px; background-color: #000;"><!-- blank --></td></tr>
<tr>
<td class="hd_border_l" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_l.gif" border="0" alt="" /></td>
<td class="main_area_ml" style="width: 16px;" align="left" valign="top"><div class="main_area_tlf"><img src="'
$settings['images_url'], '/main_area_t_blank.gif" border="0" alt="" /></div></td>
<td id="bodyarea" style="padding: 0px 1px 12px 1px;">'
;


if ($context['user']['is_admin'])
{

if (empty($settings['theme_version_attention']))
{
if ($forum_version != 'SMF 1.1 RC2')
echo '
<div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffb76f;">
<div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
<b style="text-decoration: underline;">Attention of WOW-DK theme:</b><br />
<div style="padding-left: 6ex;">
This theme doesn\'t correspond to the version of SMF that you are using. This theme is made for SMF 1.1 RC2. 

</div>
</div>'
;
}
if (empty($txt['necessary_to_translate']))
echo '
<div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #e7e7f7;">
<div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
<b style="text-decoration: underline;">Attention of wow-dk theme:</b><br />
<div style="padding-left: 6ex;">
You should put &quot;<b>Modifications.<span style="color: red;"><acronym title="Name of language that you are using">' 
$language '</acronym></span>.php</b>&quot; on the &quot;<b>languages</b>&quot; directory ( <i>'$settings['theme_url'], '/languages/</i> ) in the theme of wow-dk.<br /><br />

Copy &quot;<i>Modifications.english.php</i>&quot; of the &quot;languages&quot; directory of wow-dk onto the first. Next, rename it according to the language for which you use the file. 

</div>
</div>'
;
}

}

function 
template_main_below()
{
global $context$settings$options$scripturl$txt;

echo '</td>
<td class="main_area_mr" style="width: 16px;" align="left" valign="top"><div class="main_area_trf"><img src="'
$settings['images_url'], '/main_area_t_blank.gif" border="0" alt="" /></div></td>
<td class="hd_border_r"><!-- blank --></td>
</tr>
<tr>
<td class="hd_border_l" style="width: 8px; background-color: #000;"><!-- blank --></td>
<td class="main_area_bl" style="width: 16px;"><!-- bl --></td>
<td class="main_area_bc" height="3"><!-- bc --></td>
<td class="main_area_br" style="width: 16px;"><!-- br --></td>
<td class="hd_border_r" style="width: 8px; background-color: #000;"><!-- blank --></td></tr>
</table>
<table style="text-align: center;" cellspacing="0" cellpadding="0" border="0" align="center" width="100%">
<tr>
<td class="hd_border_l" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_l.gif" border="0" alt="" /></td>
<td class="footer_area_tc" height="20" style="padding: 5px 0px 5px 0px;">&nbsp;'
;

// Show the load time?
if ($context['show_load_time'])
echo '
'
$txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '';

echo '
<!-- area_tc --></td>
<td class="hd_border_r" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_r.gif" border="0" alt="" /></td></tr>
</table>'
;

// Show the "Powered by" and "Valid" logos, as well as the copyright.  Remember, the copyright must be somewhere!
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
function smfFooterHighlight(element, value)
{
element.src = smf_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
}
// ]]></script>

<table id="footerarea" style="text-align: center;" cellspacing="0" cellpadding="0" border="0" align="center" width="100%">
<tr><td class="hd_border_l" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_l.gif" border="0" alt="" /></td>
<td width="28%" class="copyright_l" style="padding: 0 0 3px 0;" valign="bottom" align="'
, !$context['right_to_left'] ? 'right' 'left''" height="35" nowrap="nowrap"><div style="width: 100%; overflow: hidden;">
<a href="http://www.mysql.com/" target="_blank" title="'
$txt['powered_by_mysql'], '"><img id="powered-mysql" src="'$settings['images_url'], '/powered-mysql.gif" alt="'$txt['powered_by_mysql'], '" width="30" height="18" style="margin: 0px 5px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://www.php.net/" target="_blank" title="'
$txt['powered_by_php'], '"><img id="powered-php" src="'$settings['images_url'], '/powered-php.gif" alt="'$txt['powered_by_php'], '" width="30" height="18" style="margin: 0px 5px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
</div></td>
<td valign="bottom" align="center" nowrap="nowrap" style="padding: 0 15px 10px 12px;" class="copyright">
<span style="white-space: nowrap;">
'
theme_copyright(), '</span>
</td>
<td width="28%" class="copyright_r" style="padding: 0 0 3px 0;" valign="bottom" align="'
, !$context['right_to_left'] ? 'left' 'right''" height="35" nowrap="nowrap"><div style="width: 100%; overflow: hidden;">
<a href="http://validator.w3.org/check/referer" target="_blank" title="'
$txt['valid_xhtml'], '"><img id="valid-xhtml10" src="'$settings['images_url'], '/valid-xhtml10.gif" alt="'$txt['valid_xhtml'], '" width="30" height="18" style="margin: 0px 5px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="'
$txt['valid_css'], '"><img id="valid-css" src="'$settings['images_url'], '/valid-css.gif" alt="'$txt['valid_css'], '" width="30" height="18" style="margin: 0px 5px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a></div>
</td>
<td class="hd_border_r" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_r.gif" border="0" alt="" /></td>
</tr>
<tr><td class="hd_border_l" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_l.gif" border="0" alt="" /></td>
<td width="28%" class="copyright_l" style="padding: 0 0 3px 0;" valign="bottom" align="'
, !$context['right_to_left'] ? 'right' 'left''" height="35" nowrap="nowrap"><div style="width: 100%; overflow: hidden;">
<a href="http://padexx.de/" class="pdx_c" title="Author of the theme." target="_blank"><span style="white-space: nowrap;">WoW-DK Theme by padexx.</span></a></div>
</td>
<td valign="bottom" align="center" nowrap="nowrap" style="padding: 0 15px 10px 12px;" class="copyright">
<span class="smalltext" style="white-space: nowrap;">based on the popular</span>
</td> 
<td width="28%" valign="bottom" align="center" style="padding: 3px 0 5px 0;" nowrap="nowrap" class="copyright_r"><div style="width: 100%; overflow: hidden;"><a href="http://bdc.s15.xrea.com/" class="bdc_c" title="Author of the base theme." target="_blank"><span style="white-space: nowrap;">Pn-Pn Theme by koni.</span></a></div>
</td>
<td class="hd_border_r" style="width: 8px;"><img src="'
$settings['images_url'], '/hd_border_r.gif" border="0" alt="" /></td>
</tr>
</table></td>
      <td width="15" class="area_r"><img src="'
$settings['images_url'], '/area_blank.gif" border="0" alt="" /></td>
    </tr>
  </tbody>
</table>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="margin-bottom: 3px;">
<tbody>
<tr><td align="left" width="37" class="bottombg_l" height="25">&nbsp;</td><td colspan="2" align="left" class="bottombg">&nbsp;
</td><td align="right" width="37" class="bottombg_r">&nbsp;</td>
</tr>  </tbody>
</table>'
;

// This is an interesting bug in Internet Explorer AND Safari.  Rather annoying, it makes overflows just not tall enough.
if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari'])
{
// The purpose of this code is to fix the height of overflow: auto div blocks, because IE can't figure it out for itself.
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA['
;

// Unfortunately, Safari does not have a "getComputedStyle" implementation yet, so we have to just do it to code...
if ($context['browser']['is_safari'])
echo '
window.addEventListener("load", smf_codeFix, false);

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = 0; i < codeFix.length; i++)
{
if ((codeFix[i].className == "code" || codeFix[i].className == "post" || codeFix[i].className == "signature") && codeFix[i].offsetHeight < 20)
codeFix[i].style.height = (codeFix[i].offsetHeight + 20) + "px";
}
}'
;
else
{
echo '
var window_oldOnload = window.onload;
window.onload = smf_codeFix;

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = codeFix.length - 1; i > 0; i--)
{
if (codeFix[i].currentStyle.overflow == "auto" && (codeFix[i].currentStyle.height == "" || codeFix[i].currentStyle.height == "auto") && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0) && (codeFix[i].offsetHeight != 0 || codeFix[i].className == "code"))
codeFix[i].style.height = (codeFix[i].offsetHeight + 36) + "px";
}

if (window_oldOnload)
{
window_oldOnload();
window_oldOnload = null;
}
}'
;
}

echo '
// ]]></script>'
;
}

echo '
</body>
</html>'
;
}

// Show a linktree.  This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{
global $context$settings$options;

// Folder style or inline?  Inline has a smaller font.
echo '<span class="nav"'$settings['linktree_inline'] ? ' style="font-size: smaller;"' '''>';

// Each tree item has a URL and name.  Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// Show the | | |-[] Folders.
if (!$settings['linktree_inline'])
{
if ($link_num 0)
echo str_repeat('<img src="' $settings['images_url'] . '/icons/linktree_main.gif" alt="| " border="0" />'$link_num 1), '<img src="' $settings['images_url'] . '/icons/linktree_side.gif" alt="|-" border="0" />';
echo '<img src="' $settings['images_url'] . '/icons/folder_open.gif" alt="+" border="0" />&nbsp; ';
}

// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo '<b>'$settings['linktree_link'] && isset($tree['url']) ? '<a href="' $tree['url'] . '" class="nav">' $tree['name'] . '</a>' $tree['name'], '</b>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
echo $settings['linktree_inline'] ? ' &nbsp;|&nbsp; ' '<br />';
}

echo '</span>';
}

// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context$settings$options$scripturl$txt;

// Work out where we currently are.
$current_action 'home';
if (in_array($context['current_action'], array('admin''ban''boardrecount''cleanperms''detailedversion''dumpdb''featuresettings''featuresettings2''findmember''maintain''manageattachments''manageboards''managecalendar''managesearch''membergroups''modlog''news''optimizetables''packageget''packages''permissions''pgdownload''postsettings''regcenter''repairboards''reports''serversettings''serversettings2''smileys''viewErrorLog''viewmembers')))
$current_action 'admin';
if (in_array($context['current_action'], array('search''admin''calendar''profile''mlist''register''login''help''pm')))
$current_action $context['current_action'];
if ($context['current_action'] == 'search2')
$current_action 'search';
if ($context['current_action'] == 'theme')
$current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' 'profile' 'admin';

// Are we using right-to-left orientation?
if ($context['right_to_left'])
{
$first 'last';
$last 'first';
}
else
{
$first 'first';
$last 'last';
}

// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0">
<tr>'
;

// Show the [home] button.
if (!empty($settings['wow_forum_button']))
echo '
<td class="maintab_off_first">&nbsp;</td>
<td valign="top" class="maintab_off_back">
<a href="'
$settings['wow_forum_button'], '">' $txt[103] , '</a>
</td>
<td class="maintab_off_last">&nbsp;</td>'
;

if (!empty($settings['wow_forum_button']))
{
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'home' 'active_back' 'off_back' '">
<a href="'
$scripturl'">' $txt['wow_forum_button_forum'] , '</a>
</td>' 
$current_action == 'home' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

}
else
{
// Show the [forum] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'home' 'active_back' 'off_back' '">
<a href="'
$scripturl'">' $txt[103] , '</a>
</td>' 
$current_action == 'home' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

}
// Show the [help] button.
echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'help' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=help">' $txt[119] , '</a>
</td>' 
$current_action == 'help' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// How about the [search] button?
if ($context['allow_search'])
echo ($current_action == 'search' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'search' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=search">' $txt[182] , '</a>
</td>' 
$current_action == 'search' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo ($current_action == 'admin' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'admin' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=admin">' $txt[2] , '</a>
</td>' 
$current_action == 'admin' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo ($current_action == 'profile' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'profile' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=profile">' $txt[79] , '</a>
</td>' 
$current_action == 'profile' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo ($current_action == 'pm' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'pm' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=pm"><span style="white-space: nowrap;">' $txt['pm_short'] , ' '$context['user']['unread_messages'] > '[<strong>'$context['user']['unread_messages'] . '</strong>]' '' '</span></a>
</td>' 
$current_action == 'pm' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// The [calendar]!
if ($context['allow_calendar'])
echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'calendar' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=calendar">' $txt['calendar24'] , '</a>
</td>' 
$current_action == 'calendar' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// the [member] list button
if (!empty($settings['member_list_button']))
{
if($settings['member_list_button'])
{
if ($context['allow_memberlist'])
echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'mlist' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=mlist">' $txt[331] , '</a>
</td>' 
$current_action == 'mlist' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';
}
}

// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo ($current_action == 'login' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'login' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=login">' $txt[34] , '</a>
</td>' 
$current_action == 'login' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';


// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo ($current_action == 'register' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'register' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=register">' $txt[97] , '</a>
</td>' 
$current_action == 'register' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';


// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' $first '">&nbsp;</td>' '<td class="maintab_off_' $first '">&nbsp;</td>' '
<td valign="top" class="maintab_' 
$current_action == 'logout' 'active_back' 'off_back' '">
<a href="'
$scripturl'?action=logout;sesc='$context['session_id'], '">' $txt[108] , '</a>
</td>' 
$current_action == 'logout' '<td class="maintab_active_' $last '">&nbsp;</td>' '<td class="maintab_off_' $last '">&nbsp;</td>';

// The end of tab section.
echo '
</tr>
</table>'
;

}

// Generate a strip of buttons.
function template_button_strip($button_strip$direction 'top'$force_reset false$custom_td '')
{
global $settings$buttons$context$txt$scripturl;

// Create the buttons...
foreach ($button_strip as $key => $value)
{
if (isset($value['test']) && empty($context[$value['test']]))
{
unset($button_strip[$key]);
continue;
}
elseif (!isset($buttons[$key]) || $force_reset)
$buttons[$key] = '<a href="' $value['url'] . '" ' .( isset($value['custom']) ? $value['custom'] : '') . '>' $txt[$value['text']] . '</a>';

$button_strip[$key] = $buttons[$key];
}

if (empty($button_strip))
return '<td>&nbsp;</td>';

echo '
<td class="'
$direction == 'top' 'main' 'mirror''tab_' $context['right_to_left'] ? 'last' 'first' '">&nbsp;</td>
<td class="'
$direction == 'top' 'main' 'mirror''tab_back">'implode(' &nbsp;|&nbsp; '$button_strip) , '</td>
<td class="'
$direction == 'top' 'main' 'mirror''tab_' $context['right_to_left'] ? 'first' 'last' '">&nbsp;</td>';
}

?>


Kettu

Hi,
I had to deinstall all mods including this one before upgrading to 1.1 RC3. Well now I don't have the mod online (it wouldn't work) but at the Forum Error Log it shows following error:
Quote8: Undefined index: allow_view_stafflist
This is for
Admin.template.php
Profile.template.php
BoardIndex.template.php
Errors.template.php
etc.

So, what can I do to eliminate that?
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

Skipdawg

Maybe the script just needs updated for RC3. Killed mine too. o hopefully we will have a RC3 compatible version of this soon.  ;D
Skipdawg's Community

Powered by SMF 1.1.3

vbgamer45

You should be able to download the rc3 version at smfhacks.com waiting for mod site to list smfr3 then i load them here.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Skipdawg

Quote from: vbgamer45 on August 22, 2006, 05:01:03 PM
You should be able to download the rc3 version at smfhacks.com waiting for mod site to list smfr3 then i load them here.

Thanks for the quick reply on that vbgamer45. If it is not up by time I get back from my extended dinner break I'll just go get it there. My Moderators do like that. Members seem to also.  ;D ;)
Skipdawg's Community

Powered by SMF 1.1.3

Kettu

Quote from: Skipdawg on August 22, 2006, 04:23:09 PM
Maybe the script just needs updated for RC3. Killed mine too. o hopefully we will have a RC3 compatible version of this soon.  ;D
But it was deinstalled. How can that be that there is a rest of it making trouble? Sounds like the deinstallation doesn't work correct.
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

Badelehrling

Thanks, it's a nice Mods BUT it doesn't work for me :'(

I am using SMF 1.0.7.
I installed the Theme, and pressed the Staff-Button. I become to see: this. Me (the admin of course) can see the page, but nobody else!
Can anybody help me please? I really love this Mod, and would like to use it!

vbgamer45

You need to set the permissions to view staff page.
For each user group you need to set it to allow view staff list.

vbgamer45
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Badelehrling

Wow thanks for the quick reply ;)

I always looked in the wrong categorie...
Sorry for the stupid question!

karras.us

vbgamer45, just a friendly idea, you may want to let users know in your 1st post, that it has been updated for RC3.

So they don't think it's old.

Love the mod, thank you.  :)

Kettu

Is there somebody who can tell me how I can erase this error 8: Undefined index: allow_view_stafflist WITHOUT installing the new version? I deinstalled the mod before upgrading but it didn't deinstall all as I now see. :(
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

HecKel

Hi!

I have some users that have more than one group, but they only appear on the primary group. Is possible to display the users on all their groups?

I suggest some option to select what the admin want, if display the user only on his primary group or display on all his groups.

HecKel
Quote from: Eliana Tamerin on August 23, 2008, 04:10:10 PM
SMF 7 is where it gets good. That has time travel. You can go back and post before the guy who flamed you. :P

vbgamer45

Maybe haven't really looked into that yet though.  It's a good idea though in some cases. Maybe an option to display them.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

haktanir2

vbgamer it would be good if we had the option to show the avatars, total posts and total time logged on the list

teamvtec

Is it possible to show avatars or images before the names? ::)

Advertisement: