• 07-04-2008, 19:30:48
    #1
    Vbulletin' kullanlar bilir bilmiyenler r10.net görmüstür ve diger siteler'de Vbulletin'de sabit konular ayrı olarak görünür AMA SMF DE OYLE DİGİL.
    Öyle Nasıl Yapabilirim teşekkürler...
  • 07-04-2008, 21:13:05
    #2
    Üyeliği durduruldu
    MessageIndex.template.php yi aç


    bul

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

    Değiştir
    $stickybar = false;
    	$normalbar = false;
    	
    	foreach($context['topics'] as $topic)
    	{
    		if($topic['is_sticky'] && !$stickybar)
    		{
    			echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><center><img src="', $settings['images_url'], '/icons/quick_sticky.gif" width="16"  /><b> Sabit Konular</b></center></td></tr>';
    			$stickybar = true;
    		}
    		else if(!$topic['is_sticky'] && $stickybar && !$normalbar)
    		{
    			echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><center><img src="' . $settings['images_url'] . '/post/xx.gif" alt="" align="middle" /><b> Normal Konular</b></center></td></tr>';
    			$normalbar = true;
    		}

    dilbermc teması kullananlar için , bunu bul
    foreach ($context['topics'] as $topic)
    		{

    değiştir

    $stickybar = false;
    	$normalbar = false;
    	
    	foreach($context['topics'] as $topic)
    	{
    		if($topic['is_sticky'] && !$stickybar)
    		{
    			echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><center><img src="', $settings['images_url'], '/icons/quick_sticky.gif" width="16"  /><b> Sabit Konular</b></center></td></tr>';
    			$stickybar = true;
    		}
    		else if(!$topic['is_sticky'] && $stickybar && !$normalbar)
    		{
    			echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><center><img src="' . $settings['images_url'] . '/post/xx.gif" alt="" align="middle" /><b> Normal Konular</b></center></td></tr>';
    			$normalbar = true;
    		}
    Edit : Rengeyik.net

    Eğer Modifikasyon Sonucu Renk Bozukluğu Yaşarsanız Style.css de Aşağıdaki Kodu Bulup Kendinize göre Editleyin...

    .windowbg3
    {
    color: #000000;
    background-color: #ECECEC;
    background-image: url('images/windowbg.gif');
    background-repeat: repeat-x;
    }
    ≤youness≥ den alıntıdır
  • 07-04-2008, 21:14:12
    #3
    messageindex.template.php dosyasını açın

    foreach($context['topics'] as $topic)
    {
    bu kodu bulun ve aşağıdaki kodla değiştirin.

    $stickybar = false;
    $normalbar = false;
    foreach($context['topics'] as $topic)
    {
    if($topic['is_sticky'] && !$stickybar)
    {
    echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><b>Sabit Konular</b></td></tr>';
    $stickybar = true;
    }
    else if(!$topic['is_sticky'] && $stickybar && !$normalbar)
    {
    echo'<tr class="titlebg"><td colspan="', empty($options['display_quick_mod']) ? '7' : '8', '"><b>Normal Konular</b></td></tr>';
    $normalbar = true;
    }
  • 07-04-2008, 21:55:42
    #4
    Teşekkürler