SMF de Normal Konular İle Sabit Konuları Ayırma

SMF de Normal Konular İle Sabit Konuları Ayırma

MessageIndex.template.php dosyasında bulun

foreach($context['topics'] as $topic)
{

Değiştirin

$stickybar = false;
$normalbar = false;
foreach($context['topics'] as $topic)
{
if($topic['is_sticky'] && !$stickybar)
{
echo’
Önemli Konular

‘;
$stickybar = true;
}
else if(!$topic['is_sticky'] && $stickybar && !$normalbar)
{
echo’
Normal Konular

‘;
$normalbar = true;
}







Tags: , , ,

Yorum Yapın