1
Modifications and Packages / Re: SA Chat
« Last post by evilservo on Today at 01:25:48 AM »Still does not work for me Sadly ... I did the Theme editing as Directed but with no avail. Is there anything I can do?
$txt['pm_ar_enabled'] = 'Auto respond to PMs';
$txt['pm_ar_subject'] = 'Auto respond subject';
$txt['pm_ar_subject_desc'] = 'Subject of PM to send to users who PM you';
$txt['pm_ar_body'] = 'Auto respond message';
$txt['pm_ar_body_desc'] = 'The message to send';
$txt['pm_ar_outbox'] = 'Save message in outbox';
$txt['pm_ar_deny'] = 'Members to not send to';
$txt['pm_ar_deny1'] = 'Membergroups to not send to';
$txt['pm_ar_profile_area'] = 'PM Auto Response';
$txt['permissionname_pm_ar'] = 'Automatically respond to incoming PMs';
$txt['pm_ar_general'] = 'General';
$txt['pm_ar_general_desc'] = 'Your generic message to default to if a filter is missing.';
$txt['pm_ar_filters'] = 'Filters';
$txt['pm_ar_filters_desc'] = 'Use different responses if certain criteria is met.';
// This contains the html for the side bar of the admin center, which is used for all admin pages.
function template_generic_menu_dropdown_above()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;
Add after: if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'profile'))
$at_profile = 1;
echo '
<div id="admin_menu">
<ul class="dropmenu" id="dropdown_menu_', $context['cur_menu_id'], '">';
Replace with: if (empty($at_profile))
echo '
<div id="admin_menu">';
else
echo '
<div id="profile_menu">';
echo '
<ul class="dropmenu" id="dropdown_menu_', $context['cur_menu_id'], '">';
#admin_menu
{
min-height: 2em;
padding-left: 0;
}
Add after#profile_menu
{
display: none;
}
And there you go, a completely invisible profile menu