Themes/Temaniz/index.template.php
Ara:
// The main content should go here.
Öncesine Ekle:
//If the user is below the minimum required posts, then show the annoying message.
global $user_info;
if (($context['user']['is_logged']) && ($user_info['posts'] < $modSettings['MinReqPostCount']))
echo '
<table align="center" style="width: 100%; padding: 20px; text-align: left; vertical-align: middle; margin: 2ex 1ex 2ex 1ex; border: 2px dashed ', $modSettings['PostCountWarningBorderColor'],'; background-color: ', $modSettings['PostCountWarningBackgroundColor'],';">
<tr>
<td width="64">
<img style="vertical-align: middle;" src="', $settings['default_theme_url'], '/images/pcWarn.gif" alt="Attention!" />
</td>
<td style="color: ', $modSettings['PostCountWarningTextColor'],';">
<strong>', $modSettings['PostCountWarningMessageTitle'], '</strong><br />', $modSettings['PostCountWarningMessage'], '
</td>
</tr>
</table>
';
Sources/ModSettings.php
Ara:
// Who's online.
array('check', 'who_enabled'),
Sonrasina Ekle:
'',
// What messages to display when the user's postcount is 0
array('text', 'PostCountWarningMessageTitle'),
array('text', 'PostCountWarningMessage'),
array('int', 'MinReqPostCount'),
'',
array('text', 'PostCountWarningBorderColor'),
array('text', 'PostCountWarningBackgroundColor'),
array('text', 'PostCountWarningTextColor'),
Themes/Temaniz/languages/ModSettings.turkish.php(YOKSA DEFAULT/LANGUAGES)
Arayin:
?>
Sonrasina Ekleyin:
$txt['PostCountWarningMessageTitle'] = 'Mesaj Hatasi - Baslik';
$txt['PostCountWarningMessage'] = 'Mesaj Hatasi - Mesaj';
$txt['MinReqPostCount'] = 'Minimun mesaj sayisi (0 = devre disi)';
$txt['PostCountWarningBorderColor'] = 'Mesaj Hatasi - Cizgilerin Rengi';
$txt['PostCountWarningBackgroundColor'] = 'Mesaj Hatasi - Arkaplan rengi';
$txt['PostCountWarningTextColor'] = 'Mesaj Hatasi - Metin rengi';
ve
Bunu Kur
sonra admin paneli düzen ve seçeneklerden ayarları yap..
teknodyum - cakal93Sömürücü tarzı bir yazı çıkmaz yükleme paketinin içini açıp o kodları bulup kendine göre ayarlaman gerekir.
Zaten sen halledersin gerisini.