Редактирование готового шаблона

Автор Yana, 05 апреля 2006, 14:14:30

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

Yana

Народ, есть несколько вопросов.
Нужно убрать из шаблона Epsilon несколько ненужных фич.
В принципе данные по дефолтному шаблону тоже подойдут.
Кто уже копался, подскажите хотя бы в каких это файлах или возможно это есть в настройках админки (я уже все перерыла).

1. Выбор юзером значка для новой темы
2. Сообщение внизу поста о том, что IP юзера записан
3. Кнопку Go

---------------------

Отвечаю сама себе :)

Пункт 2

Нужно закомментировать в файле Display.template.php следующие строки


// Or, should we show it because this is you?
/*elseif ($message['can_see_ip'])
echo '
<a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">', $message['member']['ip'], '</a>';*/
// Okay, are you at least logged in?  Then we can show something about why IPs are logged...
/*elseif (!$context['user']['is_guest'])
echo '
<a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">', $txt[511], '</a>';*/
// Otherwise, you see NOTHING!
/*else
echo '
', $txt[511];*/

Пункт 3

Закомментировать или убрать в файле BoardIndex.template.php код


<a href="', $board['last_post']['href'], '"><img alt="go" src="', $settings['images_url'], '/icons/last_post.gif" align="right" hspace="3" border="0" /></a>


И в файле MessageIndex.template.php код

<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" border="0" style="float: right;" /></a>
Webmoney -> Paypal: вывод и оплата товаров и сервисов за рубежом

Joomlaportal.ru | Ru-mambo.ru

Aat

#1
Небольшая поправка на будущее :)
По 1му пункту коментировать ничего ненадо :)
Администрирование - Сообщения и Темы - Настройки Тем - Разрешить иконки

:) и все :)
Conquerors Of The Illusionary Expanses

TotenMorgen

#2
Вопрос такой - скачал с оф.сайта черный темплейт (BlackDay), там отсутствуют кнопочки свернуть/развернуть тему (т.е., сами collapse.gif и expand.gif есть, но не прописано отображение, а может и функция). В каком файле это прописано должно быть (хотя бы просто строку в дефолтном скине, чтобы код скопировать)

Mavn

index.template.php


// 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" : "";
document.getElementById("upshrinkHeader2").style.display = mode ? "none" : "";

current_header = mode;
}
// ]]></script>';

// the routine for the info center upshrink
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var current_header_ic = ', empty($options['collapse_header_ic']) ? 'false' : 'true', ';

function shrinkHeaderIC(mode)
{';

if ($context['user']['is_guest'])
echo '
document.cookie = "upshrinkIC=" + (mode ? 1 : 0);';
else
echo '
smf_setThemeOption("collapse_header_ic", mode ? 1 : 0, null, "', $context['session_id'], '");';

echo '
document.getElementById("upshrink_ic").src = smf_images_url + (mode ? "/expand.gif" : "/collapse.gif");

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

current_header_ic = mode;
}
// ]]></script>



// this is the upshrink button for the user info section
echo '
<a href="#" 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'], '" align="bottom" style="margin: 0 1ex;" /></a>
</td>
</tr>
<tr id="upshrinkHeader"', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
<td valign="top" colspan="2">
<table width="100%" class="bordercolor" cellpadding="8" cellspacing="1" border="0" style="margin-top: 1px;">
<tr>';




echo '
<table id="upshrinkHeader2"', empty($options['collapse_header']) ? '' : ' style="display: none;"', ' width="100%" cellpadding="4" cellspacing="0" border="0">



вроде как все может что пропустил    

SimpleMachines Russian Community Team
п.1 Пройду курсы гадалок для определения исходного кода по скриншоту.

п.2 У вас нет желания читать правила раздела, у меня нет желания одобрять темы, которые не соответствуют этим правилам.

TotenMorgen