Simple Machines Community Forum

SMF Support => Türkçe Bölümü (Turkish) => Language Specific Support => İpuçları ve Hileler => Topic started by: Yağız... on November 08, 2008, 08:46:39 AM

Title: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on November 08, 2008, 08:46:39 AM
2.0 Final sürümleri için:
BoardIndex.template.php'de bulun:
<tr id="board_', $board['id'], '_children">
<td colspan="3" class="children windowbg">
<strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '
</td>
</tr>';

Değiştirin:
<tr id="board_', $board['id'], '_children">
<td colspan="3" class="children windowbg">
<table>
<tr>';

foreach ($children as $key => $child)
{
if ($key % 2 == 0 && $key != 0)
echo '
</tr>
<tr>';

echo '
<td style="padding-left: 10px;">', $child, '</td>';
}

echo '
</tr>
</table>
</td>
</tr>';

Sütunları fazlalaştırmak için:
    Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.




1.1.x sürümleri için:
BoardIndex.template.php'de bulun:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <span class="smalltext"><b>', $txt['parent_boards'], '</b>: ', implode(', ', $children), '</span>
                </td>

Değiştirin:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<img src="' . $settings['images_url'] . '/on.gif" alt="' . $txt[333] . '" width="15" height="15" style="vertical-align: middle; margin-left: 2px;" /><b>' . $child['link'] . '</b>' : '<img src="' . $settings['images_url'] . '/off.gif" alt="' . $txt[334] . '" width="15" height="15" style="vertical-align: middle; margin-right: 2px;" />' . $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <table>
                        <tr>';

                    foreach ($children as $key => $child)
                    {
                        if ($key % 2 == 0 && $key != 0)
                            echo '
                        </tr>
                        <tr>';

                        echo '
                            <td style="padding-left: 10px;"><span class="smalltext">', $child, '</span></td>';
                    }

                        echo '
                        </tr>
                    </table>
                </td>

Sütunları fazlalaştırmak için:
   Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.

Tenma (http://www.simplemachines.org/community/index.php?action=profile;u=198898)'ya teşekkürler.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Minare on November 08, 2008, 09:28:56 AM
Çok teşekkürler Ustad
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: yemzet on November 21, 2008, 10:00:39 AM
anlatım çok güzel teşekkür ediyorum, bunun acaba 2.0 versiyonu için olanı yok mu ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on November 21, 2008, 10:21:35 AM
Malesef. En yakın zamanda yapmaya çalışacağım.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: yemzet on November 22, 2008, 12:51:44 PM
aslında bu kodlar oluyyor ama ortaya şöyle bir hata çıkıyor,

1 İleti
1 Konu  Son İleti Gönderen: Yönetici

şeklindeki sütunlardaki yazılar kayboluyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on November 22, 2008, 10:19:47 PM
Yağız ilgilenicem derse ilgilenir ;) Sabretmekte fayda var yemzet..
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: $$$_erenkoy on November 26, 2008, 12:25:17 PM
yağız hocam ben bunları kendi temamda denedim hem 3lü hem 4lü ama olmadı
acaba diğer temalar için farklı birşeyler mi yapmak gerekiyor
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gurbetci on December 27, 2008, 12:51:43 PM
yaptim hatta aldim

resim asagida
http://www.boardsat.com/boardsatresim/solhatta.jpg
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 27, 2008, 12:55:03 PM
Bulun:
<td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
Değiştirin:
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gurbetci on December 27, 2008, 02:46:25 PM
bu sefer bu sekil hatta oldu
http://www.boardsat.com/boardsatresim/althata2.jpg
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 27, 2008, 02:50:37 PM
5 yazan yeri 4 yapmayı deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: grafitus on December 27, 2008, 04:20:17 PM
Yağız abi 2şerli sütunlu yapsan bunu ???
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 27, 2008, 04:24:55 PM
Zaten 2 3 ve 4 lü olarak var.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on December 28, 2008, 10:56:23 AM
Teşekkürler Yağız ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gurbetci on December 29, 2008, 12:31:29 AM
Tesekkürler emekleriniz icin
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kral_89 on January 02, 2009, 05:47:03 PM
ustam bu modu Vagabond teması uzerınde nasıl uygulucam pekı
yapıcam sızı yormucam ama anlatım
default ıcın
bu kodların aynısı da vagabond ta bulamıyorum
nasıl yapıcam kısa bı anlatım yapsanız fena olmaz ya
sımdıden cok tesekkurler :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 02, 2009, 06:05:04 PM
Tema adresini alabilir miyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kral_89 on January 02, 2009, 06:36:04 PM
tema adresi derken ????
anlamadımki
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 02, 2009, 06:49:29 PM
Temayı indirdiğiniz adres.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kral_89 on January 02, 2009, 06:55:57 PM
http://custom.simplemachines.org/themes/index.php?lemma=500
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 02, 2009, 07:02:37 PM
Buradaki kodları uygulamayı deneyin. Hata verirse tekrar yazarsınız.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kral_89 on January 02, 2009, 07:18:02 PM
parse error dedı ya :(
ekte board ındex tempı versem sen uygular mısın rıca etsem
bi türlü olmadı yapamadım ben ya
Board İndex Temp. (http://rapidshare.com/files/179199804/Yeni_WinRAR_archive.rar.html)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 02, 2009, 08:06:03 PM
Bunu deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kral_89 on January 03, 2009, 06:49:13 AM
oldu sağol Yağız
büyüksün valla :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on January 03, 2009, 02:50:14 PM
Benim temada verdiklerine benzer kodlar yok Yağız. :-/

http://rapidshare.com/files/179461147/BoardIndex.template.php.html
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: sevdaligul on January 03, 2009, 05:13:23 PM
emegine saglık
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 04, 2009, 02:20:38 PM
Quote from: Mucize on January 03, 2009, 02:50:14 PM
Benim temada verdiklerine benzer kodlar yok Yağız. :-/

http://rapidshare.com/files/179461147/BoardIndex.template.php.html (http://rapidshare.com/files/179461147/BoardIndex.template.php.html)
Dener misin?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on January 05, 2009, 02:09:47 PM
Teşekkürler Yağız. Bunu nasıl 3lü hale getirebiliriz ?


* Bir de alt bölümlerin isimlerinin başına nasıl on / off resimleri ekleyebiliriz ?


2.sorum meraktan :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 05, 2009, 02:21:11 PM
3lü hale getirme ilk mesajda var. Diğeri içinde bakmam gerekiyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Paragaya on January 10, 2009, 01:18:22 PM
Teşekkürler yagız :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: €®Ю€∏∏----® on January 16, 2009, 07:02:05 AM
arkadaşar bende Ambet teması kullanıyorum hata verdi biri bunu düzenleye bilirmi ?? 2 olarak ?

http://rapidshare.com/files/184237106/BoardIndex.template.php.html

TEMA ADRESİ : http://custom.simplemachines.org/themes/index.php?lemma=6
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 16, 2009, 09:20:55 AM
Bunu deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: €®Ю€∏∏----® on January 16, 2009, 09:24:54 AM
Seni seviyorum :D eline sağlık Yağız Allah razı olsun  :-*  :-* oldu tamamdır ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Pяηѕѕ LF on January 16, 2009, 11:57:30 AM
Quote from: Yağız on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.

Merhaba,

Bir sey sormak istiyorum. Forum'da Boardicon yüklü ise, alt bölüm resimleri için onk.gif ve offk.gif yerine Boardicon resimlerinin gösterilmesi mümkünmü ?

Bir bölümde telefon resmi varsa boardicon da alt bölümlerdeki resimlerde kücük telefonlar olsun. Eger kitap varsa alt bölümler kitap olsun.

Umarim anlatabildim.

Kolay gelsin.





ayrica konu ile ilgisi yok ama..

Bloc 'un türk oldugunu bilmiyordum, yeni ögrendim :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 16, 2009, 12:01:11 PM
BoardIcon modifikasyonunun adresini alabilir miyim?


Bloc Türk değil.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Pяηѕѕ LF on January 16, 2009, 12:07:24 PM
Buyur:
http://custom.simplemachines.org/mods/index.php?mod=753





Demek o Bloc baska bir Bloc  :P
 
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on January 16, 2009, 12:46:06 PM
Konuyla alakalı değil ama Boardicon modifikasyonu 1.1.2 sürümü ile uyumlu yazıyor ancak 1.1.7 forumlarda da gördüm. Uyarlanması kolay mı + 2.0 Beta 4 için de uyarlanabilir mi ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Pяηѕѕ LF on January 16, 2009, 02:44:17 PM
Quote from: Mucize on January 16, 2009, 12:46:06 PM
Konuyla alakalı değil ama Boardicon modifikasyonu 1.1.2 sürümü ile uyumlu yazıyor ancak 1.1.7 forumlarda da gördüm. Uyarlanması kolay mı + 2.0 Beta 4 için de uyarlanabilir mi ?

Istersen buna bakabilirsin belki isini görebilir 2.0 Beta 4 içinde uyumlu :

http://custom.simplemachines.org/mods/index.php?mod=1266
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: darkkA on January 30, 2009, 10:36:30 AM
paylasim icin tesekürler-.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Pяηѕѕ LF on February 06, 2009, 04:42:52 PM
Quote from: Pяєηѕєѕ 丂√丂 on January 16, 2009, 11:57:30 AM
Quote from: Yağız on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.

Merhaba,

Bir sey sormak istiyorum. Forum'da Boardicon yüklü ise, alt bölüm resimleri için onk.gif ve offk.gif yerine Boardicon resimlerinin gösterilmesi mümkünmü ?

Bir bölümde telefon resmi varsa boardicon da alt bölümlerdeki resimlerde kücük telefonlar olsun. Eger kitap varsa alt bölümler kitap olsun.

Umarim anlatabildim.

Kolay gelsin.


Bu eklenti ile ilgili fikri olan arkadaslar varmi  ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: deejayss on February 11, 2009, 07:38:39 AM
teşekkürler Yağız ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: l1nux1ngtgb on February 11, 2009, 10:57:39 AM
Sana teşekkürlerimi sunuyorum Yağız.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on February 11, 2009, 12:55:20 PM
Buradaki alt forumları 3 lü yapma metodu dilbermc kullanıyorum ve 1.18 smf.

Codlar uyar mı?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on February 11, 2009, 02:25:51 PM
Hayır, uymaz. En yakın zamanda bakacağım.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: falta on February 14, 2009, 02:25:48 PM
teşekkürler güzel oldu...
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: zdearban on February 16, 2009, 10:59:33 AM
2.0 rc1 için oluyormu bu kodlar ? default
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on February 16, 2009, 11:07:44 AM
Denemedim ama olması gerekiyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: zdearban on February 16, 2009, 11:32:02 AM
Quote from: Yağız... on February 16, 2009, 11:07:44 AM
Denemedim ama olması gerekiyor.

evet az önce değiştirdim oldu fakat yazılar ufaldı  :S
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on February 16, 2009, 11:33:28 AM
Hangi yazılar?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: zdearban on February 16, 2009, 11:36:42 AM
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg23.imageshack.us%2Fimg23%2F7838%2Fadszdn7.jpg&hash=df15a9261dffcdbeeedc695e24ffcc4fbd71c91f)

böyle oldu
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on February 16, 2009, 11:45:30 AM
                    $sayac=0;
                     foreach ($board['children'] as $child)
                     {
                         if (!$child['is_redirect'])
                             $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . $child['topics'] . ', ' . $txt['posts'] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                         else
                             $child['link'] = '<a href="' . $child['href'] . '" title="' . $child['posts'] . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                         // Has it posts awaiting approval?
                         if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
                             $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';sesc=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

                         $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
                         $sayac++;
                     }
                     echo '
          <tr>
             <td class="windowbg3 smalltext largepadding">
                <table>
                   <tr>
                      <td valign="top"><strong>', $txt['parent_boards'], '</strong>:<br/>';
                      for($sayac2 = 0 ; $sayac2 < ceil($sayac/2);$sayac2++)
                         echo $children[$sayac2], '<br/>';
                      echo '
                      </td>
                      <td width="30"> </td>
                      <td valign="top"><br/>';
                      for(; $sayac2 < $sayac ; $sayac2++)
                         echo $children[$sayac2], '<br/>';
                      echo '
                      </td>
                   </tr>
                </table>
             </td>

Bu şekilde deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: zdearban on February 16, 2009, 11:55:57 AM
oldu çok teşk.ler kolay gelsin
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: burakco on February 27, 2009, 05:42:52 AM
sağol kardeşim
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: CafCaf Dergisi on March 02, 2009, 07:07:40 AM
http://custom.simplemachines.org/themes/index.php?lemma=807

bu temada kodları bulamıyorum.. ne yapmam lazım ? yardım lütfen..
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 02, 2009, 07:33:06 AM
Bulun:
foreach ($board['children'] as $child)
{
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
}

echo '
<div style="padding-top: 1px;" class="smalltext"><i>', $txt['parent_boards'], ': ', implode(', ', $children), '</i></div>';
}

Değiştirin:

$sayac=0;
foreach ($board['children'] as $child)
{
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
$sayac++;
}

echo '
<div style="padding-top: 1px;" class="smalltext">
<table>
<tr>
<td valign="top">
<span class="smalltext"><b>', $txt['parent_boards'], '</b>:<br/>';
for($sayac2 = 0 ; $sayac2 < ceil($sayac/2);$sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span>
</td>
<td width="30"> </td>
<td valign="top">
<span class="smalltext"><br/>';
for(; $sayac2 < $sayac ; $sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span>
</td>
</tr>
</table>
</div>';
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: CafCaf Dergisi on March 02, 2009, 07:48:38 AM
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg201.imageshack.us%2Fimg201%2F6064%2Fhata.jpg&hash=f3fe5113123fc27c65c1f7d769604a399a44a61a)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg201.imageshack.us%2Fimg201%2F6064%2Fhata.th.jpg&hash=77b7b5ac4b7e32a1caad057c55210aba08d23b4a) (http://img201.imageshack.us/my.php?image=hata.jpg)


Yapıyorum ama böyle bir hata veriyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 02, 2009, 08:01:04 AM
</div>'; den sonra } koymayı unutmuşum. Tekrar deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: CafCaf Dergisi on March 02, 2009, 08:07:50 AM
Ne kadar teşekkür etsem az.. Allah razı olsun. Kolay gelsin =)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dr_NastY on March 07, 2009, 11:46:30 AM
Merhabalar 2.0 RC1 kullanıyorum. Verdiğiniz kodları hem kullandığım temanın hem de 'default' temanın 'Boardindex.template.php' sayfasında tarattım ve ilk bölüm kodları bulunamadı diyor. Kodları parçaladığımda yani bir kısmını ayırdığımda altta verdiğim kısmı var sadece sizin verdiğiniz kodların tamamı görünmüyor.
Bu sorunu halletmek için ne yapabilirim acaba?

Teşekkürler.

Kodların bende görünen kısmı :

  foreach ($board['children'] as $child)
                     {
                         if (!$child['is_redirect'])
                             $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . $child['topics'] . ', ' . $txt['posts'] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                         else
                             $child['link'] = '<a href="' . $child['href'] . '" title="' . $child['posts'] . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                         // Has it posts awaiting approval?
                         if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
                             $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' .
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Death Note on March 20, 2009, 09:41:34 AM
TeşekkürLer İşe Yaradı. ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: ♣♥™Persekli™♥♣ on March 20, 2009, 10:55:36 AM
teşekkürler kardeş  :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 20, 2009, 07:12:01 PM
Kodlar güncellendi. Yeni mesaj olduğunda veya olmadığında yeni mesaj var veya yok ikonları çıkıyor. Ve sütunların fazlalaştırılması için daha sağlıklı ve kolay olması sağlandı.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: CafCaf Dergisi on March 22, 2009, 06:06:22 AM
Kullandığım tema bu:

http://custom.simplemachines.org/themes/index.php?lemma=1370

Yapamıyorum.. BoardIndex.template dosyası yok zaten :S

ne yapmam gerek... lütfen yardım...
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 22, 2009, 06:06:57 AM
default klasöründeki dosyaya uygulayın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: CafCaf Dergisi on March 22, 2009, 06:13:51 AM
Quote from: Yağız... on March 22, 2009, 06:06:57 AM
default klasöründeki dosyaya uygulayın.

Öyle bir dosya bulamadım desem  :(
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 22, 2009, 06:16:51 AM
../Themes/default/BoardIndex.template.php olarak bakın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dejavu42 on March 26, 2009, 05:36:39 PM
http://custom.simplemachines.org/themes/index.php?lemma=1461

buradaki temaya olmuyor arkadaşlar bu uygulama haberiniz olsun ters mi geliyor nedir
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 26, 2009, 06:07:38 PM
İlk mesajda yazdığım gibi sadece default(Core) temaya ve benzeri temalara uyar.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dejavu42 on March 26, 2009, 06:49:42 PM
buda benziyor zaten default temaya fazla bir farkı yok gorunuşu dışında ustat neden olmaz ki neyse yaw 2.0 bir acizligi daha alıştık hic bişey yapamıyoruz yaw bu surumde ne bicim iş anlamaıdm gitti yeni surum sozde
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 26, 2009, 06:52:13 PM
1.1.x sürümünde Classic temada deneyin, yine olmaz. 2.x sürümüyle alakalı birşey değil.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dejavu42 on March 26, 2009, 08:46:58 PM
herneyse sonucta yapamıyoruz oyle yada boyle olmuyor yani
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on March 27, 2009, 03:10:58 AM
Temanızın BoardIndex.template.php dosyasını alabilir miyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dejavu42 on March 30, 2009, 05:41:53 PM
teşekkürler yagız ben artık smf 2.0 da gorseligi unutum emeklerim olmasa forumuda kapatacam zaten smf 2.0=mod fukarası bir surum bunun adı bu her ufak detayda sizi rahatsız edeceksek hem siz hem biz yandık gitti dum duz kulanılacak bir smf surumu bu surum uzerindeki temayla uzerindeki profil alanı uzerindeki bolum eklemeleri ve google fukarası bir surum tamamen smf cilerin neden cıkardıgını kafamda hala cozmedigim bir surum zaten senden başkada bu surume oyle kolay kolay cevap veren mod yok sitede heralde onlarda şaşırdı bir kac yere iki soru sordum tık yok bilseler yazarlardı bundan eminim ama onlarda bilmedigi icin arkadaşlarda caresiz bilinen şeylerde bazen işe yaramıyor bu surume ben guluyorum sadece rc2 diyorlar onda nasıl gulecegiz onu bekliyorum..
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: €®Ю€∏∏----® on April 03, 2009, 03:51:55 AM
sürüm daha yeni çıktı arkadaşlar 1.x lerde olan modifakasyonların paketlerin vs çevirmeye devam ediyorlar diğer sürümlerden eksi yönü değil her zaman bir artı yönü vardır, bence bu çabaların sonucu boş değildir yani. Ben kullanmadım ama temaların görselliğini inceledim gayet hoş.. :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on April 25, 2009, 10:08:37 PM
merhaba  arkadaşlar benim şöyle bi sıkıntım var. gerçi sıkıntılarımda hiç bitmiyo nedense siteyi açtım açalı iş yapmaz oldum işe bile girmiyom  :P neyse derdim şu alt bölümde yazısını ufaltamazmıyız yani daha sola falan çekemezmiyim okul adlarının tek tek sıralanmasını istiyorum ama bende tek tek olmuyor bir uzun yazsam çift satır oluyo

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg402.imageshack.us%2Fimg402%2F252%2F53648549.jpg&hash=5485583bdaad5496c8232741b75e614903f1e408)

http://img402.imageshack.us/my.php?image=53648549.jpg
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on April 26, 2009, 07:07:24 AM
Alt bölümler: yazısını kaldırmak için BoardIndex.template.php dosyanızda bulun ve silin:
<b>', $txt['parent_boards'], ':</b>

2. satıra geçmesini önlemek için aynı dosyada bulun(2 tane var):
<td class="middletext" valign="top">
Değiştirin:
<td class="middletext" valign="top" nowrap="nowrap">
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on April 26, 2009, 08:07:49 AM
Quote from: Yağız... on April 26, 2009, 07:07:24 AM
Alt bölümler: yazısını kaldırmak için BoardIndex.template.php dosyanızda bulun ve silin:
<b>', $txt['parent_boards'], ':</b>

2. satıra geçmesini önlemek için aynı dosyada bulun(2 tane var):
<td class="middletext" valign="top">
Değiştirin:
<td class="middletext" valign="top" nowrap="nowrap">
süper oldu kardeşim tşkler
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on May 06, 2009, 04:32:05 PM
http://www.dosya.tc/smf.png.html resimde göründüğü gibi alt bölümler bir birine çok yakın onları biraz açabilirmiyiz
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on May 11, 2009, 11:12:48 AM
rc1 kullanıorum ama defaultta bulamadım kodları  :-[

http://www.takilanlar.com/Mucize/BoardIndex.template.rar
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on May 11, 2009, 01:21:10 PM
192. satıra bak.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on May 11, 2009, 05:22:41 PM
;)
Saol Yağız
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: siirlerefendisi on May 19, 2009, 05:19:17 AM
Bu alt bölümlerinden alt bölümlerini sıralamak için ne yapmamız gerekiyor bilginiz var mı acaba
ana kategorideki alt kategorilerim sıralı ama alt kategorilerdeki alt kategorileri de aynı şekilde nasıl sıralayabiliriz
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on May 19, 2009, 06:42:52 AM
Aynı değişiklikleri MessageIndex.template.php dosyasında yapın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: siirlerefendisi on May 19, 2009, 07:28:19 AM
hocam teşekkür ederim çok harika oldu
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on May 21, 2009, 05:07:36 PM
hocam benim temada dedigin kodları bulamadım yardımcı olabılır mısınız

http://yalinfan.net/BoardIndex.template.txt

bakabılır mısınız ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on May 21, 2009, 05:10:47 PM
Sizin temanızdaki kodlar biraz farklı ve zate iki bölüm halinde alt alta sıralı şekilde(eğer yalinfan.net adresinden bahsediyorsanız).
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on May 21, 2009, 05:20:36 PM
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fyalinfan.net%2Fd222.JPG&hash=b26f3c8f7a96fc306ea09e57835039a975db42b0)

evet hocam yalinfan.net den bahsediyorum ama alt alta degıl :s yanyana gorunuyor bende ?

:'(
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on May 21, 2009, 05:23:00 PM
3. bir bölüm oluşturduğunuzda o bölüm aşağıya geçecektir. Alt alta sıralamadan kastım budur :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on May 21, 2009, 05:25:18 PM
hıımm anladım hocam :) tskrler dedıgın gıbı oldu
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 25, 2009, 02:40:26 PM
Bu altbölümlerde aralarındaki mesafenin eşit olmasını nasıl sağlarız? Galiba burası sota kalıyor okuyan yoktur...

Bir de altbölüm isimlerini yer aldığı bölümün alan rengi koyu gri bunu nasıl değiştirebilirim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 25, 2009, 02:42:18 PM
Bölümlerin aralarındaki mesafenin eşit olması gerekiyor...
Rengi değiştirmek için <td class="windowbg3 smalltext largepadding"> tagının içinde 3 değerini silin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 25, 2009, 02:54:27 PM
Maalesef eşit olmuyor Yağız. İçindeki yazılar belirliyor ve bir bölümün (kategori yani) ötede diğer bölümün içeride oluyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 25, 2009, 02:58:28 PM
Site adresinizi alabilir miyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 25, 2009, 03:19:33 PM
PM attım aldınız mı?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 25, 2009, 03:49:44 PM
Bulun:
<td class="windowbg3 smalltext largepadding">
                    <table>

Değiştirin:
<td class="windowbg3 smalltext largepadding">
                   <table style="float:right; padding-left:0px;margin-top: 0px;" width="98%" cellspacing="0" cellpadding="0" border="0">
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 25, 2009, 06:45:20 PM
Çok teşekkürler yalnız yine olmadı çünkü her ketegorideki kendisi ayrı ayrı duruyor.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 25, 2009, 06:46:10 PM
Dosyayı eke ekler misiniz?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 25, 2009, 07:13:36 PM
Yağız dosya ekleme özelliği yok ben mi bulamadım?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 26, 2009, 03:33:52 AM
Konu içerisinde Yanıtla butonuna basın, oradan Ek Seçenekler... butonuna tıklayın, karşınıza eklenti eklemek için kutu gelecek, oraya dosyanizi ekleyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 26, 2009, 08:00:59 AM
Yağız sadece ya bu bölümde seçenekler içinde dosya ekle gözat yok ama diğer  bölümlerimde var? Belki bu durumdan haberiniz olamayabilir ilginç birşey?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on June 27, 2009, 04:25:32 AM
Dosyanızda bulun:
<td style="padding-left: 10px;">', $child, '</td>';
Değiştirin:
<td width="33%">', $child, '</td>';
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: ernate on June 27, 2009, 05:58:36 AM
Selam arkadaşlar bu yapılanları yaptım ama hiç biri istediğim gibi olmadı bana yardım edermisiniz:?
aşağıdaki resimdeki sonuç çıktı  ortaya bu kodlarla alt bölümleri ayrı bir bölüme attı .
Oyunlar ile bölümler arasında çizgi var ve ALT BÖLÜMLER başlığıda çıkmadı .

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi40.tinypic.com%2F2dsqzo5.jpg&hash=ad40e15f0a73b6a6de82016af92fb96ecd3cc6be)

Ama benim istediğim buradaki gibi
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi40.tinypic.com%2F11gkdvt.jpg&hash=b868f8daae75b9b3fa4ae4d5519313f11828a0e3)
aynı ketegori içinde başka bir bölüm de çıkmıyor bu şekilde yapamadım kullandığım tema ise
http://custom.simplemachines.org/themes/index.php?lemma=656 (http://custom.simplemachines.org/themes/index.php?lemma=656)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on June 27, 2009, 07:56:13 AM
Quote from: Yağız... on June 27, 2009, 04:25:32 AM
Dosyanızda bulun:
<td style="padding-left: 10px;">', $child, '</td>';
Değiştirin:
<td width="33%">', $child, '</td>';

bunu kullan ben dede aynı sorun vardı yağızın verdiği kodla düzeldi
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: akbora on June 27, 2009, 08:02:57 AM
Zaten uyguladım oldu bilasdem gerek yoktu hatırlatmana.

Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on June 27, 2009, 09:55:27 AM
yanlış anladın galiba akbaba ben ertane için yazmıştım.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 03, 2009, 09:05:03 AM
bunları denedim ama hiçbir değişiklik olmadığı için o konuyu açmıştım kodlarda hata varsa o ayrı çünkü kopyala yapıştır yapıyorum yani orda yazılanların aynısı orda ne varsa
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on July 03, 2009, 11:26:19 AM
Quote from: Hüsamettin on July 03, 2009, 09:05:03 AM
bunları denedim ama hiçbir değişiklik olmadığı için o konuyu açmıştım kodlarda hata varsa o ayrı çünkü kopyala yapıştır yapıyorum yani orda yazılanların aynısı orda ne varsa
Sorununuz neydi, onuda yazsanız.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 04, 2009, 01:17:47 PM
sorum şu (kodları ekleyince hiçbirşey değişmiyo ve hata filanda vermiyo)
ben alt bölümleri alt alta yapmak istiyorum 3lü veya 4lü kodları aynen ekliyporum ekleyince herhangi sorun çıkmıyo ama bölümlerde alt alta olmuyo


smf sürümüm 2.0 rc1-1
forumda eklenti olarak
simple portal
top10
member kolor link ve hide tag
haricinde eklenti filan yok sitenin teması default tema

adres
www.forum-merkezi.com


Not:yarından  sonra bi iki hafta yokum sonra bikonu açmış ilgilenmemiş filan demeyin (1-2hafta)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 05, 2009, 04:06:14 PM
cevap verecek yok sanırım
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Özgür on July 06, 2009, 12:04:46 AM
Kullandığınız temanın BoardIndex.template.phpsini düzenlediğinizden emin olun.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on July 12, 2009, 12:12:53 PM
arkadaşlar alt bölümler biri sağda biri solda çok kötü duruyor bunların hepsini izalamam mümkünmü sağ tarafta duranlar aynı izada olmalı ? jpeg ekliyorum..

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg34.imageshack.us%2Fimg34%2F9158%2F62832110.jpg&hash=9e176ee25288cb7ce2aab80f71c4d5004c025052)


http://img34.imageshack.us/i/62832110.jpg/
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 13, 2009, 03:04:21 PM
Quote from: [Daydreamer] on July 06, 2009, 12:04:46 AM
Kullandığınız temanın BoardIndex.template.phpsini düzenlediğinizden emin olun.
zaten eminim her şekil denedim ancak sorun düzelmedi alt bölümler alt alta olmuyor

2.0 da
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 15, 2009, 12:10:48 PM
nasıl olacağı hakkında bi fikri olan yokmu ya
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 15, 2009, 02:53:29 PM
default tema kullnıyorum forum sürümüm 2.0RC1-1
sitem
www.forum-merkezi.com


burdaki şeyle r i denedim kaç kez çalışmıyo hiç bir ne olur yardım ya

Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 15, 2009, 04:02:39 PM
sorunumu halllettim yardımcı olmadığınız için teşekkür ederim :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on July 15, 2009, 06:21:33 PM
ben halledemedim yaw malesef bütün alt konular çaprazlama gidiyor biri sağda biri solda bide anlasam neden öyle düzenliyeceğim ama maleseffff çok beceriksizim bu konuda... varsa bilen lütfennnn yardım etsin şu forumun görüntüsünü bi düzeltelim...
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 16, 2009, 08:37:33 AM
alt bölümlerin içindeki alt bölümleri nasıl alt alta dizeriz
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: RecepCakmakci on July 18, 2009, 03:47:32 PM
Arkadaşlar Benim Dosyamda Yapabilecek Var Mı ,Bir Türlü Olmuyor !??

// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                                                $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/subon.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/suboff.gif" alt="' . $txt[334] . '"/>' . $child['link']; }

echo '
<table style="10px;"width="100%" cellspacing="0" cellpadding="0"border="0">
<tr>
<br><font style="font-size: 8pt;"><i><b>', $txt['parent_boards'], ':</b></i></font><td class="middletext" valign="middle"align="center">';
                        $child_counter = 0;



echo '
</td>
<td class="smalltext" valign="middle">';
for(; $child_counter < count($children); $child_counter++)
echo $children[$child_counter], '&nbsp;&nbsp;&nbsp;';
echo '
</td>
</tr>
</table>';
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on July 25, 2009, 04:55:59 PM
QuoteArkadaşlar Benim Dosyamda Yapabilecek Var Mı ,Bir Türlü Olmuyor !??
board index templatene ekle yapayım ben
---------------------------------------------------------------------------------------------------------
benim sorunum şu alt alt yapınca alt bölümler ve tüm yazılar dev gibi oldu nasıl düzelecek  birde albölümler içinde ki alt bölümler nasıl altalta olur



(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg10.imageshack.us%2Fimg10%2F935%2Fadszjkj.jpg&hash=49b5530201b049f8c40b42044ff438620b07c3a0)


Not:
forum sürümüm 2.0rc 1-1



kurulu eklentiler

1.     Simple Image Upload     
2.    Hide Tag    
3.    Full Top 10 Stats    
4.    SimplePortal - Turkish    
5.    SimplePortal    
6.    Pretty URLs    
7.    Hide Tag BBC Image    
8.    Member Color Link
9.    Sitemap    
10.    nneonneo's AJAX ShoutBox
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on July 27, 2009, 12:39:37 PM
Quote from: Restorasyon on July 12, 2009, 12:12:53 PM
arkadaşlar alt bölümler biri sağda biri solda çok kötü duruyor bunların hepsini izalamam mümkünmü sağ tarafta duranlar aynı izada olmalı ? jpeg ekliyorum..

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg34.imageshack.us%2Fimg34%2F9158%2F62832110.jpg&hash=9e176ee25288cb7ce2aab80f71c4d5004c025052)


http://img34.imageshack.us/i/62832110.jpg/
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hkan on July 28, 2009, 02:29:00 AM
Restorasyon, BoardIndex.template.php dosyasını ekte verir misin?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on July 28, 2009, 07:50:52 AM
Quote from: biggboss on July 28, 2009, 02:29:00 AM
Restorasyon, BoardIndex.template.php dosyasını ekte verir misin?

ek seçeneklerde dosya yükleme olayı çıkmıyo dostum o yüzden aşağıdaki linke yükledim tşkler ilgine..

http://www.dosya.tc/BoardIndex.template.rar.html
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hkan on July 28, 2009, 01:35:20 PM
Bununla değiştir. http://www.dosya.tc/BoardIndex.template_8680.rar.html
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Restorasyon on July 28, 2009, 03:57:57 PM
Quote from: biggboss on July 28, 2009, 01:35:20 PM
Bununla değiştir. http://www.dosya.tc/BoardIndex.template_8680.rar.html

eet kardeşim böle süper oldu çok teşekkür ederim.. bazı yerlerde yine oynama var ama ondada alt bölümlerin adı çok uzun o yüzdendir sanırım düzeltilme imkanı yok... ohh be :D uyuz oluyodum öle biri sağda biri solda bölee çok ii ... eline sağlık
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hkan on July 28, 2009, 07:04:46 PM
Rica ederim. :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on August 03, 2009, 03:15:11 PM
alt bölümlerin içindeki alt bölümler nasıl alt alta olur
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on August 03, 2009, 03:41:44 PM
Aynı işlemi MessageIndex.template.php dosyasında yapın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Hüsamettin on August 03, 2009, 05:07:59 PM
yağız olmadı kodlar farklı  dediğin dosyada


dosyayı siteme yüklüyorum ordan bak

site sürümüm 2.0rc 1-2

http://www.forum-merkezi.com/indir/MessageIndex.template.rar

kodların farklı olduğunu göreceksin
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on August 16, 2009, 12:18:41 PM
yağız benimkide alt karegoriler uyumsuz bir bakarmısınız resim koyuyorum

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg254.yukle.tc%2Fimages%2F4521Ekran_Goruntusu.png&hash=4bbffff50861a7dbe39b16427ab97f08937721c4)
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg254.yukle.tc%2Fimage.php%3Fid%3D4521Ekran_Goruntusu.png&hash=81a26a2ff6b779639eabe1b80a9c06d701fe8da2)

http://img254.yukle.tc/images/4521Ekran_Goruntusu.png

sorunumu çözdüm.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Balaban on August 17, 2009, 10:40:39 AM
Bir türlü beceremedim...Önce sağa kaydı,sonra sola...bir yardımcı olabilir misiniz ?


// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
    if (!empty($board['children']))
    {
     // Sort the links into an array with new boards bold so it can be imploded.
     $children = array();
     /* Each child in each board's children has:
      id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
     foreach ($board['children'] as $child)
      $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
     echo '
   <i class="smalltext"><br />
   ', $txt['parent_boards'], ': ', implode(', ', $children), '</i>';
    }
    echo '
  </td>';
if (!$board['is_redirect'])
  echo '
  <td class="windowbg" valign="middle" align="center" width="6%">', $board['topics'], '</td>
  <td class="windowbg" valign="middle" align="center" width="6%">', $board['posts'], '</td>';
else
  echo '
  <td class="windowbg" valign="middle" align="center" colspan="2" width="12%">', $board['posts'], ' ', $txt['redirects'], '</td>';
    /* The board's and children's 'last_post's have:
     time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
     link, href, subject, start (where they should go for the first unread post.),
     and member. (which has id, name, link, href, username in it.) */
    echo '
  <td class="windowbg2" valign="middle" width="22%">
   <span class="smalltext">
    ', $board['last_post']['time'], '<br />
    ', $txt['in'], ' ', $board['last_post']['link'], '<br />
    ', $txt['by'], ' ', $board['last_post']['member']['link'], '
   </span>
  </td>
</tr>';
   }
  }
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on August 17, 2009, 11:04:31 AM
smf hangi sürümü kullanıyorsun
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on August 17, 2009, 11:05:45 AM
foreach ($board['children'] as $child)
                    {
                        if (!$child['is_redirect'])
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . $child['topics'] . ', ' . $txt['posts'] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                        else
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . $child['posts'] . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                        // Has it posts awaiting approval?
                        if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
                            $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

                        $children[] = $child['new'] ? '<img src="' . $settings['images_url'] . '/on.gif" alt="' . $txt['new_posts'] . '" width="15" height="15" style="vertical-align: middle; margin-left: 2px;" /><strong>' . $child['link'] . '</strong>' : '<img src="' . $settings['images_url'] . '/off.gif" alt="' . $txt['old_posts'] . '" width="15" height="15" style="vertical-align: middle; margin-right: 2px;" />' . $child['link'];
                    }
                    echo '
            <tr>
                <td class="windowbg3 smalltext largepadding">
                   <table style="float:right; padding-left:0px;margin-top: 0px;" width="98%" cellspacing="0" cellpadding="0" border="0">
                        <tr>';

                    foreach ($children as $key => $child)
                    {
                        if ($key % 3 == 0 && $key != 0)
                            echo '
                        </tr>
                        <tr>';

                        echo '
                            <td style="padding-left: 10px;">', $child, '</td>';
                    }

                        echo '
                        </tr>
                    </table>
                </td>


smf 2.0 için bunu dene
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Balaban on August 17, 2009, 01:07:14 PM
olmuyor...ilk denediğimden bir farkı yok :S
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: bilasdem on August 17, 2009, 02:33:24 PM
farkı

<td class="windowbg3 smalltext largepadding">
                   <table style="float:right; padding-left:0px;margin-top: 0px;" width="98%" cellspacing="0" cellpadding="0" border="0">
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gökhan | Brestgerfich on September 02, 2009, 08:58:33 PM
Quote from: Pяєηѕєѕ 丂√丂 on January 16, 2009, 02:44:17 PM
Quote from: Mucize on January 16, 2009, 12:46:06 PM
Konuyla alakalı değil ama Boardicon modifikasyonu 1.1.2 sürümü ile uyumlu yazıyor ancak 1.1.7 forumlarda da gördüm. Uyarlanması kolay mı + 2.0 Beta 4 için de uyarlanabilir mi ?



Istersen buna bakabilirsin belki isini görebilir 2.0 Beta 4 içinde uyumlu :

http://custom.simplemachines.org/mods/index.php?mod=1266 (http://custom.simplemachines.org/mods/index.php?mod=1266)

Bu kadar zaman sonra, tekrar lazım oldu ya bu mod ve ipucu...

Yağız ve Prenses... Teşekkürler.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: by_bosnia on September 18, 2009, 09:00:52 PM
Quote from: Yağız... on November 08, 2008, 08:46:39 AM
Anlatımların hepsi default içindir.

1.x versiyonu için.
2'li olarak:
BoardIndex.template.php'de bulun:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <span class="smalltext"><b>', $txt['parent_boards'], '</b>: ', implode(', ', $children), '</span>
                </td>

Değiştirin:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<img src="' . $settings['images_url'] . '/on.gif" alt="' . $txt[333] . '" width="15" height="15" style="vertical-align: middle; margin-left: 2px;" /><b>' . $child['link'] . '</b>' : '<img src="' . $settings['images_url'] . '/off.gif" alt="' . $txt[334] . '" width="15" height="15" style="vertical-align: middle; margin-right: 2px;" />' . $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <table>
                        <tr>';

                    foreach ($children as $key => $child)
                    {
                        if ($key % 2 == 0 && $key != 0)
                            echo '
                        </tr>
                        <tr>';

                        echo '
                            <td style="padding-left: 10px;"><span class="smalltext">', $child, '</span></td>';
                    }

                        echo '
                        </tr>
                    </table>
                </td>

Sütunları fazlalaştırmak için:
   Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.



2.0 versiyonu için.
2'li olarak:
BoardIndex.template.php'de bulun:
foreach ($board['children'] as $child)
                    {
                        if (!$child['is_redirect'])
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . $child['topics'] . ', ' . $txt['posts'] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                        else
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . $child['posts'] . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                        // Has it posts awaiting approval?
                        if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
                            $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

                        $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
                    }
                    echo '
            <tr>
                <td class="windowbg3 smalltext largepadding"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td>

Değiştirin:
foreach ($board['children'] as $child)
                    {
                        if (!$child['is_redirect'])
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . $child['topics'] . ', ' . $txt['posts'] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                        else
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . $child['posts'] . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                        // Has it posts awaiting approval?
                        if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
                            $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

                        $children[] = $child['new'] ? '<img src="' . $settings['images_url'] . '/on.gif" alt="' . $txt['new_posts'] . '" width="15" height="15" style="vertical-align: middle; margin-left: 2px;" /><strong>' . $child['link'] . '</strong>' : '<img src="' . $settings['images_url'] . '/off.gif" alt="' . $txt['old_posts'] . '" width="15" height="15" style="vertical-align: middle; margin-right: 2px;" />' . $child['link'];
                    }
                    echo '
            <tr>
                <td class="windowbg3 smalltext largepadding">
                    <table>
                        <tr>';

                    foreach ($children as $key => $child)
                    {
                        if ($key % 2 == 0 && $key != 0)
                            echo '
                        </tr>
                        <tr>';

                        echo '
                            <td style="padding-left: 10px;">', $child, '</td>';
                    }

                        echo '
                        </tr>
                    </table>
                </td>

Sütunları fazlalaştırmak için:
    Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.

Tenma (http://www.simplemachines.org/community/index.php?action=profile;u=198898)'ya teşekkürler.



sütun derken ben yanyana ama sadece 2 sıra olacak şekilde konuları dizmek istiyorum bu onun içinmiydi pardon  ??? :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: grafitus on September 21, 2009, 05:00:58 AM
Yağız, SMF ile alakasız bir soru ancak yardımcı olursan sevinirim. Bir betik hazırlıyorum da bir türlü sütunlamayı yapamadım. Google'da iyi sonuç vermedi. Verdikleri de çalışmıyordu. Ama benim aşağıdaki sorguma yönelik bir sütunlama yapar mısın? :

<?php
$kid $_GET['kid'];
$sql mysql_query("
SELECT *
FROM uruns
WHERE kid = 
$kid");

while ($yaz mysql_fetch_array($sql))
{

}
?>
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on September 21, 2009, 12:28:49 PM
Quote from: [grafitus] on September 21, 2009, 05:00:58 AM
SMF ile alakasız bir soru
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: grafitus on September 21, 2009, 05:06:42 PM
Quote from: Yağız... on September 21, 2009, 12:28:49 PM
Quote from: [grafitus] on September 21, 2009, 05:00:58 AM
SMF ile alakasız bir soru

Kusra bakma. Yaparsan öleceğin hiç aklıma gelmemişti.


Düzenleme: Yapabildim. Belki başkalarınada lazım olur diye burayada ekliyorum:
<?php
    $i 
0//Bu deli hep aynı kalsın. 
    
$sutun 3// Kaç sütunlu olmasını istiyorsanız... 
    
echo
<table> 
    <tr>'


    while(
$veri mysql_fetch_assoc($sql)) 
    { 
    
$i++; 
        echo 

        <td>'
,$veri['ad'],'</td>'

        if (
$i $sutun == 0
        { 
        echo 

    </tr> 
    <tr>'

        } 
    } 
    echo

    </tr> 
</table>'
;
?>
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: karaburun on October 01, 2009, 09:53:40 PM
Elinize sağlık teşekkürler 2.0 güzel oldu
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on October 06, 2009, 04:35:10 AM
boardindextemplate.php dosyam asagıdakı gıbı denıyorum olmuyor yardımcı olabılcek var mı ?

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg80.imageshack.us%2Fimg80%2F2109%2Fdsc00618.png&hash=d797f208aee54c436c1fd70cb53f989ec44674b6)

SMF 1.1.0 kullnıorm



Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: grafitus on October 06, 2009, 08:58:42 AM
gokozlu, dosya halinde verirsen daha iyi olur. Kodların hatalı çıkmışta.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on October 06, 2009, 12:50:53 PM
Quote from: Beraat-ül grafitus on October 06, 2009, 08:58:42 AM
gokozlu, dosya halinde verirsen daha iyi olur. Kodların hatalı çıkmışta.
pardon hocam,

buyrun

www.uyduspor.com/BoardIndex.template.rar
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: gokozlu on October 08, 2009, 11:11:07 AM
yapabılecek kımse yok mu forumda ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on October 08, 2009, 01:37:52 PM
Bunu deneyin.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: SurvivaL on November 18, 2009, 04:02:12 PM
http://www.unyeihl.com/forum/BoardIndex.template.rar

şu temaya da uygulayabilirmisiniz  ???
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: SurvivaL on November 30, 2009, 09:36:30 AM
orda kimse var mıı ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on November 30, 2009, 12:15:06 PM
Kodlar ilk verdiğim mesajdakiler ile aynı, kendiniz yapabilirsiniz.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: cashme555 on December 13, 2009, 03:36:44 PM
arkadaşlar bendede resimdeki gibi çıktı acaba bunu nasıl düzeltebiliriz şimdiden teşekkürler

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg237.imageshack.us%2Fimg237%2F7861%2Fadszlu.png&hash=8853203810eade257fa3b6a2d1e8ccfe575c92f9)

Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: online24 on December 23, 2009, 12:10:09 PM
 Yağız... usta ben alt bölümlerin yanlarına resim ekleyemiyorum eklediğimde sağ tarafta çıkıyor solda çıkmıyor

http://i48.tinypic.com/2ezrzth.gif resim bu usta.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 23, 2009, 01:08:40 PM
Düzenlenmiş BoardIndex.template.php dosyanızı alabilir miyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: online24 on December 23, 2009, 01:58:46 PM
<?php
// Version: 2.0 RC2; BoardIndex

function template_main()
{
    global 
$context$settings$options$txt$scripturl$modSettings;


    
//Display ads on the board index
    
if (function_exists("show_boardAds"))
    {
        
$ads show_boardAds();
        if(!empty(
$ads))
            if(
$ads['type']==0)
                echo 
$ads['content'];
            else
                eval(
$ads['content']);
        unset(
$ads);
    }
    
// Show some statistics if stat info is off.
    
if (!$settings['show_stats_index'])
        echo 
'
    <div id="index_common_stats">
        '
$txt['members'], ': '$context['common_stats']['total_members'], ' &nbsp;&#8226;&nbsp; '$txt['posts_made'], ': '$context['common_stats']['total_posts'], ' &nbsp;&#8226;&nbsp; '$txt['topics'], ': '$context['common_stats']['total_topics'], '
        '
, ($settings['show_latest_member'] ? ' ' $txt['welcome_member'] . ' <strong>' $context['common_stats']['latest_member']['link'] . '</strong>' $txt['newest_member'] : '') , '
    </div>'
;

    
// Show the news fader?  (assuming there are things to show...)
    
if ($settings['show_newsfader'] && !empty($context['fader_news_lines']))
    {
        echo 
'
    <div id="newsfader">
        <h3 class="catbg"><span class="left"></span>
            <img id="newsupshrink" src="'
$settings['images_url'], '/collapse.gif" alt="*" title="'$txt['upshrink_description'], '" align="bottom" style="display: none;" />
            '
$txt['news'], '
        </h3>
        <ul class="reset" id="smfFadeScroller"'
, empty($options['collapse_news_fader']) ? '' ' style="display: none;"''>';

            foreach (
$context['news_lines'] as $news)
                echo 
'
            <li>'
$news'</li>';

    echo 
'
        </ul>
    </div>
    <script type="text/javascript" src="'
$settings['default_theme_url'], '/scripts/fader.js"></script>
    <script type="text/javascript"><!-- // --><![CDATA[

        // Create a news fader object.
        var oNewsFader = new smf_NewsFader({
            sSelf: \'oNewsFader\',
            sFaderControlId: \'smfFadeScroller\',
            sItemTemplate: '
JavaScriptEscape('<strong>%1$s</strong>'), ',
            iFadeDelay: '
, empty($settings['newsfader_time']) ? 5000 $settings['newsfader_time'], '
        });

        // Create the news fader toggle.
        var smfNewsFadeToggle = new smc_Toggle({
            bToggleEnabled: true,
            bCurrentlyCollapsed: '
, empty($options['collapse_news_fader']) ? 'false' 'true'',
            aSwappableContainers: [
                \'smfFadeScroller\'
            ],
            aSwapImages: [
                {
                    sId: \'newsupshrink\',
                    srcExpanded: smf_images_url + \'/collapse.gif\',
                    altExpanded: '
JavaScriptEscape($txt['upshrink_description']), ',
                    srcCollapsed: smf_images_url + \'/expand.gif\',
                    altCollapsed: '
JavaScriptEscape($txt['upshrink_description']), '
                }
            ],
            oThemeOptions: {
                bUseThemeSettings: '
$context['user']['is_guest'] ? 'false' 'true'',
                sOptionName: \'collapse_news_fader\',
                sSessionVar: '
JavaScriptEscape($context['session_var']), ',
                sSessionId: '
JavaScriptEscape($context['session_id']), '
            },
            oCookieOptions: {
                bUseCookie: '
$context['user']['is_guest'] ? 'true' 'false'',
                sCookieName: \'newsupshrink\'
            }
        });
    // ]]></script>'
;
    }

    echo 
'
    <div id="boardindex_table">
        <table class="table_list">'
;

    
/* Each category in categories is made up of:
    id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?),
    new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down image),
    and boards. (see below.) */
    
foreach ($context['categories'] as $category)
    {
        
// If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
        
if (empty($category['boards']) && !$category['is_collapsed'])
            continue;

        echo 
'
            <tbody class="header">
                <tr>
                    <td colspan="4" class="catbg"><span class="left"></span>'
;

        
// If this category even can collapse, show a link to collapse it.
        
if ($category['can_collapse'])
            echo 
'
                        <a class="collapse" href="'
$category['collapse_href'], '">'$category['collapse_image'], '</a>';

        if (!
$context['user']['is_guest'] && !empty($category['show_unread']))
            echo 
'
                        <a class="unreadlink" href="'
$scripturl'?action=unread;c='$category['id'], '">'$txt['view_unread_category'], '</a>';

        echo 
'
                        '
$category['link'], '
                    </td>
                </tr>
            </tbody>
            <tbody class="content">    '
;

        
// Assuming the category hasn't been collapsed...
        
if (!$category['is_collapsed'])
        {
            
/* Each board in each category's boards has:
            new (is it new?), id, name, description, moderators (see below), link_moderators (just a list.),
            children (see below.), link_children (easier to use.), children_new (are they new?),
            topics (# of), posts (# of), link, href, and last_post. (see below.) */
            
foreach ($category['boards'] as $board)
            {
                echo 
'
                <tr class="windowbg2">
                    <td class="icon windowbg"'
, !empty($board['children']) ? ' rowspan="2"' '''>
                        <a href="'
, ($board['is_redirect'] || $context['user']['is_guest'] ? $board['href'] : $scripturl '?action=unread;board=' $board['id'] . '.0;children'), '">';

                
// If the board or children is new, show an indicator.
                
if ($board['new'] || $board['children_new'])
                    echo 
'
                            <img src="'
$settings['images_url'], '/'$context['theme_variant'], '/on'$board['new'] ? '' '2''.png" alt="'$txt['new_posts'], '" title="'$txt['new_posts'], '" />';
                
// Is it a redirection board?
                
elseif ($board['is_redirect'])
                    echo 
'
                            <img src="'
$settings['images_url'], '/'$context['theme_variant'], '/redirect.png" alt="*" title="*" />';
                
// No new posts at all! The agony!!
                
else
                    echo 
'
                            <img src="'
$settings['images_url'], '/'$context['theme_variant'], '/off.png" alt="'$txt['old_posts'], '" title="'$txt['old_posts'], '" />';

                echo 
'
                        </a>
                    </td>
                    <td class="info">
                        <a class="subject" href="'
$board['href'], '" name="b'$board['id'], '">'$board['name'], '</a>';

                
// Has it outstanding posts for approval?
                
if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics']))
                    echo 
'
                        <a href="'
$scripturl'?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > $board['unapproved_posts'] ? 'topics' 'posts'), ';brd='$board['id'], ';'$context['session_var'], '='$context['session_id'], '" title="'sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>';

                echo 
'

                        <p>'
$board['description'] , '</p>';

                
// Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.)
                
if (!empty($board['moderators']))
                    echo 
'
                        <p class="moderators">'
count($board['moderators']) == $txt['moderator'] : $txt['moderators'], ': 'implode(', '$board['link_moderators']), '</p>';

                
// Show some basic information about the number of posts, etc.
                    
echo '
                    </td>
                    <td class="stats windowbg">
                        <p>'
comma_format($board['posts']), ' '$board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
                        '
$board['is_redirect'] ? '' comma_format($board['topics']) . ' ' $txt['board_topics'], '
                        </p>
                    </td>
                    <td class="lastpost">'
;

                
/* The board's and children's 'last_post's have:
                time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
                link, href, subject, start (where they should go for the first unread post.),
                and member. (which has id, name, link, href, username in it.) */
                
if (!empty($board['last_post']['id']))
                    echo 
'
                        <p><strong>'
$txt['last_post'], '</strong>  '$txt['by'], ' '$board['last_post']['member']['link'] , '<br />
                        '
$txt['in'], ' '$board['last_post']['link'], '<br />
                        '
$txt['on'], ' '$board['last_post']['time'],'
                        </p>'
;
                echo 
'
                    </td>
                </tr>'
;
                
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
                
if (!empty($board['children']))
                {
                    
// Sort the links into an array with new boards bold so it can be imploded.
                    
$children = array();

/* Each child in each board's children has:
                            id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
                    
$sayac=0;
                    foreach (
$board['children'] as $child)
                    {
                 
$child['link'] = '<img src="' $settings['images_url'] . '/altbolum.gif" /> <a href="' $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' $txt['board_topics'] . ': ' $child['topics'] . ', ' $txt['posts'] . ': ' $child['posts'] . ')">' $child['name'] . '</a>';
                            
$children[] = $child['new'] ? '<b>' $child['link'] . '</b>' $child['link'];
                            
$sayac++;
                    }

                    echo 
'
            <tr>
                <td colspan="7" class="windowbg'
, !empty($settings['seperate_sticky_lock']) ? '3' '''">
                    <table><tr><td valign="top">
                        <span class="smalltext"><b>'
$txt['parent_boards'], '</b><br/>';
                    for(
$sayac2 $sayac2 ceil($sayac/2);$sayac2++)
                            echo 
$children[$sayac2], '<br/>';
                        echo 
'
                    </span></td><td width="30"><span class="smalltext"></td><td valign="top"><span class="smalltext"><br/>'
;
                    for(; 
$sayac2 $sayac $sayac2++)
                            echo 
$children[$sayac2], '<br/>';
                        echo 
'
                    </span>
                    </td></tr></table>
                </td>
               </tr>'
;

                }
            }
        }
        echo 
'
            </tbody>
            <tbody class="divider">
                <tr>
                    <td colspan="4"></td>
                </tr>
            </tbody>'
;
    echo 
'<tbody><tr><td colspan="4">';
    
//Display ads Between cats
    
if (function_exists("show_category"))
    {
        
$ads show_category($category['id']);
        if(!empty(
$ads))
            if(
$ads['type']==0)
                echo 
$ads['content'];
            else
                eval(
$ads['content']);
        unset(
$ads);
    }
    echo 
'            </td></tr></tbody>';

    }
    echo 
'
        </table>
    </div>'
;

    if (
$context['user']['is_logged'])
    {
        echo 
'
    <div id="posting_icons" class="align_left">'
;
        
// Mark read button.
        
$mark_read_button = array(
            
'markread' => array('text' => 'mark_as_read''image' => 'markread.gif''lang' => true'url' => $scripturl '?action=markasread;sa=all;' $context['session_var'] . '=' $context['session_id']),
        );

        echo 
'
        <ul class="reset">
            <li class="align_left"><img src="'
$settings['images_url'], '/'$context['theme_variant'], '/new_some.png" alt="" /> '$txt['new_posts'], '</li>
            <li class="align_left"><img src="'
$settings['images_url'], '/'$context['theme_variant'], '/new_none.png" alt="" /> '$txt['old_posts'], '</li>
            <li class="align_left"><img src="'
$settings['images_url'], '/'$context['theme_variant'], '/new_redirect.png" alt="" /> '$txt['redirect_board'], '</li>
        </ul>
    </div>'
;

        
// Show the mark all as read button?
        
if ($settings['show_mark_read'] && !empty($context['categories']))
            echo 
'<div class="mark_read">'template_button_strip($mark_read_button'right'), '</div>';
    }
    else
    {
        echo 
'
    <div id="posting_icons" class="flow_hidden">
        <ul class="reset">
            <li class="align_left"><img src="'
$settings['images_url'], '/new_none.png" alt="" /> '$txt['old_posts'], '</li>
            <li class="align_left"><img src="'
$settings['images_url'], '/new_redirect.png" alt="" /> '$txt['redirect_board'], '</li>
        </ul>
    </div>'
;
    }

    
template_info_center();
}

function 
template_info_center()
{
    global 
$context$settings$options$txt$scripturl$modSettings;

    
// Here's where the "Info Center" starts...
    
echo '
    <span class="clear upperframe"><span></span></span>
    <div class="roundframe"><div class="innerframe">
        <h3 class="catbg"><span class="left"></span>
            <img class="icon" id="upshrink_ic" src="'
$settings['images_url'], '/collapse.gif" alt="*" title="'$txt['upshrink_description'], '" style="display: none;" />
            '
sprintf($txt['info_center_title'], $context['forum_name_html_safe']), '
        </h3>
        <div id="upshrinkHeaderIC"'
, empty($options['collapse_header_ic']) ? '' ' style="display: none;"''>';

    
// This is the "Recent Posts" bar.
    
if (!empty($settings['number_recent_posts']))
    {
        echo 
'
            <h4 class="titlebg"><span class="left"></span>
                <a href="'
$scripturl'?action=recent"><img class="icon" src="'$settings['images_url'], '/post/xx.gif" alt="'$txt['recent_posts'], '" /></a>
                <span>'
$txt['recent_posts'], '</span>
            </h4>
            <div class="hslice" id="recent_posts_content">
                <div class="entry-title" style="display: none;">'
$context['forum_name_html_safe'], ' - '$txt['recent_posts'], '</div>
                <div class="entry-content" style="display: none;">
                    <a rel="feedurl" href="'
$scripturl'?action=.xml;type=webslice">'$txt['subscribe_webslice'], '</a>
                </div>'
;

        
// Only show one post.
        
if ($settings['number_recent_posts'] == 1)
        {
            
// latest_post has link, href, time, subject, short_subject (shortened with...), and topic. (its id.)
            
echo '
                <strong><a href="'
$scripturl'?action=recent">'$txt['recent_posts'], '</a></strong>
                <p id="infocenter_onepost" class="middletext">
                    '
$txt['recent_view'], ' &quot;'$context['latest_post']['link'], '&quot; '$txt['recent_updated'], ' ('$context['latest_post']['time'], ')<br />
                </p>'
;
        }
        
// Show lots of posts.
        
elseif (!empty($context['latest_posts']))
        {
            echo 
'
                <dl id="ic_recentposts" class="middletext">'
;

            
/* Each post in latest_posts has:
                    board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
                    subject, short_subject (shortened with...), time, link, and href. */
            
foreach ($context['latest_posts'] as $post)
                echo 
'
                    <dt><strong>'
$post['link'], '</strong> '$txt['by'], ' '$post['poster']['link'], ' ('$post['board']['link'], ')</dt>
                    <dd>'
$post['time'], '</dd>';
            echo 
'
                </dl>'
;
        }
        echo 
'
            </div>'
;
    }

    
// Show information about events, birthdays, and holidays on the calendar.
    
if ($context['show_calendar'])
    {
        echo 
'
            <h4 class="titlebg"><span class="left"></span>
                <a href="'
$scripturl'?action=calendar' '"><img class="icon" src="'$settings['images_url'], '/icons/calendar.gif''" alt="'$context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '" /></a>
                <span>'
$context['calendar_only_today'] ? $txt['calendar_today'] : $txt['calendar_upcoming'], '</span>
            </h4>
            <p class="smalltext">'
;

        
// Holidays like "Christmas", "Chanukah", and "We Love [Unknown] Day" :P.
        
if (!empty($context['calendar_holidays']))
                echo 
'
                <span class="holiday">'
$txt['calendar_prompt'], ' 'implode(', '$context['calendar_holidays']), '</span><br />';

        
// People's birthdays. Like mine. And yours, I guess. Kidding.
        
if (!empty($context['calendar_birthdays']))
        {
                echo 
'
                <span class="birthday">'
$context['calendar_only_today'] ? $txt['birthdays'] : $txt['birthdays_upcoming'], '</span> ';
        
/* Each member in calendar_birthdays has:
                id, name (person), age (if they have one set?), is_last. (last in list?), and is_today (birthday is today?) */
        
foreach ($context['calendar_birthdays'] as $member)
                echo 
'
                <a href="'
$scripturl'?action=profile;u='$member['id'], '">'$member['is_today'] ? '<strong>' ''$member['name'], $member['is_today'] ? '</strong>' '', isset($member['age']) ? ' (' $member['age'] . ')' '''</a>'$member['is_last'] ? '<br />' ', ';
        }
        
// Events like community get-togethers.
        
if (!empty($context['calendar_events']))
        {
            echo 
'
                <span class="event">'
$context['calendar_only_today'] ? $txt['events'] : $txt['events_upcoming'], '</span> ';
            
/* Each event in calendar_events should have:
                    title, href, is_last, can_edit (are they allowed?), modify_href, and is_today. */
            
foreach ($context['calendar_events'] as $event)
                echo 
'
                    '
$event['can_edit'] ? '<a href="' $event['modify_href'] . '" ><img src="' $settings['images_url'] . '/icons/modify_small.gif" alt="*" /></a> ' ''$event['href'] == '' '' '<a href="' $event['href'] . '">'$event['is_today'] ? '<strong>' $event['title'] . '</strong>' $event['title'], $event['href'] == '' '' '</a>'$event['is_last'] ? '<br />' ', ';

            
// Show a little help text to help them along ;).
            
if ($context['calendar_can_edit'])
                echo 
'
                    (<a href="'
$scripturl'?action=helpadmin;help=calendar_how_edit" onclick="return reqWin(this.href);">'$txt['calendar_how_edit'], '</a>)';
        }
        echo 
'
            </p>'
;
    }


    
// Show statistical style information...
    
if ($settings['show_stats_index'])
    {
        echo 
'
            <h4 class="titlebg"><span class="left"></span>
                <a href="'
$scripturl'?action=stats"><img class="icon" src="'$settings['images_url'], '/icons/info.gif" alt="'$txt['forum_stats'], '" /></a>
                <span>'
$txt['forum_stats'], '</span>
            </h4>
            <p>
                '
$context['common_stats']['total_posts'], ' '$txt['posts_made'], ' '$txt['in'], ' '$context['common_stats']['total_topics'], ' '$txt['topics'], ' '$txt['by'], ' '$context['common_stats']['total_members'], ' '$txt['members'], '. ', !empty($settings['show_latest_member']) ? $txt['latest_member'] . ': <strong> ' $context['common_stats']['latest_member']['link'] . '</strong>' '''<br />
                '
, (!empty($context['latest_post']) ? $txt['latest_post'] . ': <strong>&quot;' $context['latest_post']['link'] . '&quot;</strong>  ( ' $context['latest_post']['time'] . ' )<br />' ''), '
                <a href="'
$scripturl'?action=recent">'$txt['recent_view'], '</a>'$context['show_stats'] ? '<br />
                <a href="' 
$scripturl '?action=stats">' $txt['more_stats'] . '</a>' '''
            </p>'
;
    }

    
// "Users online" - in order of activity.
    
echo '
            <h4 class="titlebg"><span class="left"></span>
                '
$context['show_who'] ? '<a href="' $scripturl '?action=who' '">' '''<img class="icon" src="'$settings['images_url'], '/icons/online.gif''" alt="'$txt['online_users'], '" />'$context['show_who'] ? '</a>' '''
                <span>'
$txt['online_users'], '</span>
            </h4>
            <p class="inline stats">
                '
$context['show_who'] ? '<a href="' $scripturl '?action=who">' ''comma_format($context['num_guests']), ' '$context['num_guests'] == $txt['guest'] : $txt['guests'], ', ' comma_format($context['num_users_online']), ' '$context['num_users_online'] == $txt['user'] : $txt['users'];

    
// Handle hidden users and buddies.
    
$bracketList = array();
    if (
$context['show_buddies'])
        
$bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == $txt['buddy'] : $txt['buddies']);
    if (!empty(
$context['num_spiders']))
        
$bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == $txt['spider'] : $txt['spiders']);
    if (!empty(
$context['num_users_hidden']))
        
$bracketList[] = comma_format($context['num_users_hidden']) . ' ' $txt['hidden'];

    if (!empty(
$bracketList))
        echo 
' (' implode(', '$bracketList) . ')';

    echo 
$context['show_who'] ? '</a>' '''
            </p>
            <p class="inline smalltext">'
;

    
// Assuming there ARE users online... each user in users_online has an id, username, name, group, href, and link.
    
if (!empty($context['users_online']))
    {
        echo 
'
                '
sprintf($txt['users_active'], $modSettings['lastActive']), ':<br />'implode(', '$context['list_users_online']);

        
// Showing membergroups?
        
if (!empty($settings['show_group_key']) && !empty($context['membergroups']))
            echo 
'
                <br />[' 
implode(']&nbsp;&nbsp;['$context['membergroups']) . ']';
    }

    echo 
'
            </p>
            <p class="last smalltext">
                '
$txt['most_online_today'], ': <strong>'comma_format($modSettings['mostOnlineToday']), '</strong>.
                '
$txt['most_online_ever'], ': 'comma_format($modSettings['mostOnline']), ' ('timeformat($modSettings['mostDate']), ')
            </p>'
;

    
// If they are logged in, but statistical information is off... show a personal message bar.
    
if ($context['user']['is_logged'] && !$settings['show_stats_index'])
    {
        echo 
'
            <h4 class="titlebg"><span class="left"></span>
                '
$context['allow_pm'] ? '<a href="' $scripturl '?action=pm">' '''<img class="icon" src="'$settings['images_url'], '/message_sm.gif" alt="'$txt['personal_message'], '" />'$context['allow_pm'] ? '</a>' '''
                <span>'
$txt['personal_message'], '</span>
            </h4>
            <p class="pminfo">
                <strong><a href="'
$scripturl'?action=pm">'$txt['personal_message'], '</a></strong>
                <span class="smalltext">
                    '
$txt['you_have'], ' 'comma_format($context['user']['messages']), ' '$context['user']['messages'] == $txt['message_lowercase'] : $txt['msg_alert_messages'], '.... '$txt['click'], ' <a href="'$scripturl'?action=pm">'$txt['here'], '</a> '$txt['to_view'], '
                </span>
            </p>'
;
    }

    echo 
'
        </div>
    </div></div>
    <span class="lowerframe"><span></span></span>'
;

    
// Info center collapse object.
    
echo '
    <script type="text/javascript"><!-- // --><![CDATA[
        var oInfoCenterToggle = new smc_Toggle({
            bToggleEnabled: true,
            bCurrentlyCollapsed: '
, empty($options['collapse_header_ic']) ? 'false' 'true'',
            aSwappableContainers: [
                \'upshrinkHeaderIC\'
            ],
            aSwapImages: [
                {
                    sId: \'upshrink_ic\',
                    srcExpanded: smf_images_url + \'/collapse.gif\',
                    altExpanded: '
JavaScriptEscape($txt['upshrink_description']), ',
                    srcCollapsed: smf_images_url + \'/expand.gif\',
                    altCollapsed: '
JavaScriptEscape($txt['upshrink_description']), '
                }
            ],
            oThemeOptions: {
                bUseThemeSettings: '
$context['user']['is_guest'] ? 'false' 'true'',
                sOptionName: \'collapse_header_ic\',
                sSessionVar: '
JavaScriptEscape($context['session_var']), ',
                sSessionId: '
JavaScriptEscape($context['session_id']), '
            },
            oCookieOptions: {
                bUseCookie: '
$context['user']['is_guest'] ? 'true' 'false'',
                sCookieName: \'upshrinkIC\'
            }
        });
    // ]]></script>'
;
}
?>



eskiden ekte verirdik hocam seçeneklerde ekle olmayınca code olarak ekledim smf 1.1.1 olarak alt bölümün kodunu ekleyince oldu ama yeni mesaj oldugunda new.gif yanda çıkar bu sefer onu çıkartamadım bir bak üstat nerde hata yapıyorum.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on December 23, 2009, 02:07:56 PM
Benim verdiğim kodları kullanmayı deneyin. Ardından bunu bulun:
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
Değiştirin:
$child['link'] = '<img src="' . $settings['images_url'] . '/altbolum.gif" alt="" /><a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: online24 on December 23, 2009, 02:39:05 PM
süper oldu hocam eline sağlık.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: tebem25 on December 24, 2009, 10:35:10 AM
benim problemim  ise  alt bölümleri sol tarafa almak. bir türlü beceremedim.yardım edermisiniz
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 04, 2010, 04:24:36 PM
Sağol Yağız, artık 2 .0 RC2 kullanmaya başladım bu güzel oldu.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 04, 2010, 04:42:57 PM
Yağız belki yeni konu açmak gerek bu sorum için ama yinede sorayım,

alt bölümleri ve resim olayını çözdük,yalnız alt bölümler ayrı bir tablo içerisinde oluyor acaba alt bölümleri buradaki (http://www.sanalkurs.net/forum/index.php) sitedeki gibi nasıl yaparız ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 04, 2010, 04:48:18 PM
Bu kodu bulun ve silin:
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
if (!$child['is_redirect'])
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
else
$child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

// Has it posts awaiting approval?
if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
$child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

$children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
}
echo '
<tr>
                  <td colspan="3" class="children windowbg">
                     <table>
                        <tr>';

                     foreach ($children as $key => $child)
                     {
                        if ($key % 2 == 0 && $key != 0)
                           echo '
                        </tr>
                        <tr>';

                        echo '
                           <td style="padding-left: 10px;">', $child, '</td>';
                     }

                        echo '
                        </tr>
                     </table>
                  </td>
               </tr>';

}

Bulun:
// Show some basic information about the number of posts, etc.
Öncesine ekleyin:
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
if (!$child['is_redirect'])
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
else
$child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

// Has it posts awaiting approval?
if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
$child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

$children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
}
echo '
<table>
<tr>';

                     foreach ($children as $key => $child)
                     {
                        if ($key % 2 == 0 && $key != 0)
                           echo '
</tr>
<tr>';

                        echo '
<td style="padding-left: 10px;">', $child, '</td>';
                     }

                        echo '
</tr>
</table>';
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 04, 2010, 05:01:27 PM
Olmadı yağız,ekteki gibi oldu.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 04, 2010, 05:22:26 PM
Bulun ve silin:
', !empty($board['children']) ? ' rowspan="2"' : '', '
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 04, 2010, 05:34:06 PM
Sağol oldu, çok oluyorum ama birde şu resimler görünseydi   ;)


Tamam ilk sayfadaki kodu uyguladım oldu.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Özgür on January 04, 2010, 06:27:59 PM
Bence uğraşmayın. Tidy Child Board Modunu kullanın. :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: mosmankoc on January 05, 2010, 10:16:50 AM
Bu alt konuları 3 sıra yapmak yada şu anda iki sıraya bunların arasını nasıl açabiliriz acaba.

Eğer mümkünse bu şekil olmazmı.
http://img218.imageshack.us/img218/6284/adszbi.png
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on January 05, 2010, 12:21:12 PM
İlk mesajda yazılanları iyice okuyun, nasıl 3 veya daha fazla sıra yapılır anlattım.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 05, 2010, 03:49:10 PM
Yağız Özgür'ün yazdığı modu kursun süpermiş, senide uğraştırdım.

http://custom.simplemachines.org/mods/index.php?mod=2294

Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: mosmankoc on January 05, 2010, 05:04:07 PM
Quote from: Gurbet_1907 on January 05, 2010, 03:49:10 PM
Yağız Özgür'ün yazdığı modu kursun süpermiş, senide uğraştırdım.

http://custom.simplemachines.org/mods/index.php?mod=2294

bu eklenti güzelmiş ama buda sadece defoult ta çıkıyor diğer tema için ne yapmalıyız.


Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Gurbet_42 on January 05, 2010, 06:25:48 PM
Quote from: mosmankoc on January 05, 2010, 05:04:07 PM
Quote from: Gurbet_1907 on January 05, 2010, 03:49:10 PM
Yağız Özgür'ün yazdığı modu kursun süpermiş, senide uğraştırdım.

http://custom.simplemachines.org/mods/index.php?mod=2294

bu eklenti güzelmiş ama buda sadece defoult ta çıkıyor diğer tema için ne yapmalıyız.




Kullandıgın sürümü seç ve parse yap manuel kurmayı dene ama en kolayı paket olarak kurmak.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: program5 on February 12, 2010, 01:00:13 PM
Quote from: mosmankoc on January 05, 2010, 10:16:50 AM
Bu alt konuları 3 sıra yapmak yada şu anda iki sıraya bunların arasını nasıl açabiliriz acaba.

Eğer mümkünse bu şekil olmazmı.
http://img218.imageshack.us/img218/6284/adszbi.png

if ($key % 3 == 0 && $key != 0) 3 rakamını değiştirin.

<td style="padding-left: 15px;">', $child, '</td>'; 15 pixel açıklık değerini arttırın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: a11 on February 22, 2010, 04:42:51 PM
1.1.x sürümlerde alt bölümleri ana sayfada göstermeme gibi bir lüksümüz var mıdır acaba ?
Alt bölüm var ama sanki hiç yokmuş gibi göstermek..
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on February 23, 2010, 01:02:32 AM
BoardIndex.template.php dosyasında şu kodu kaldırın:
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
if (!$child['is_redirect'])
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
else
$child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

// Has it posts awaiting approval?
if ($child['can_approve_posts'] && ($child['unapproved_posts'] | $child['unapproved_topics']))
$child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > $child['unapproved_posts'] ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

$children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
}
echo '
<tr><td colspan="3" class="children windowbg"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td></tr>';
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 01:38:04 PM
2.0 RC3 için yapılabilinir mi?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on April 08, 2010, 02:16:54 PM
Eklendi.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: saruhan on April 08, 2010, 02:19:03 PM
Çok teşekkürler...Güzel oldu
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 03:20:32 PM
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg175.imageshack.us%2Fimg175%2F4503%2Fadszjr.jpg&hash=482973b5842880704ec5cd8762434604fb7d96ce)

Oradaki "Yeni" logosunu solda ve soldaki OF logosunun küçüğü şeklinde yapabilir miyiz?  :-\
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on April 08, 2010, 03:22:56 PM
Dosyayı ekte alabilir miyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 03:41:38 PM
Buyur.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 03:48:39 PM
Flood gibi olacak ama kusura bakmayın. Resimde gösterdiğim gibi Son ileti kısmında siyah boşluk çıkıyor. Orayı üstündeki bölgeyle nasıl birleştirebilirim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on April 08, 2010, 03:50:15 PM
Resim için:
Bulun:
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
Değiştirin:
$child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['images_url'] . '/' . $context['theme_variant'] . '/on.png" width="32" height="32" class="new_posts" alt="" />' : '') . '</a>';

Boşluk için:
<td colspan="3" class="children windowbg">
Buradaki 3 değerini 4 yapın.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 03:59:26 PM
O resmi alt bölümünün isminin en soluna nasıl ekleyebilirim?

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg443.imageshack.us%2Fimg443%2F9403%2Fadszdw.jpg&hash=a867319e3b578c804edb82f1edc7ef9a14b54f96)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on April 08, 2010, 04:06:00 PM
O satırı bu şekilde değiştirin:
$child['link'] = '' . ($child['new'] ? '<a href="' . $child['href'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['images_url'] . '/on.png" width="20" height="20" class="new_posts" alt="" />' : '') . '</a> <a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a>' : '') . '';
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Crazytoones on April 08, 2010, 04:18:38 PM
Tamam, sağol.  :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: jackalsahan on July 20, 2010, 04:51:59 PM
Quote from: Yağız... on November 08, 2008, 08:46:39 AM
Anlatımlar 1.1.x ve 2.0 RC1 sürümleri için Core, yani default tema içindir. 2.0 RC2 ve 2.0 RC3 sürümü için ise Curve, yani yeni default tema içindir.



1.1.x versiyonu için.
BoardIndex.template.php'de bulun:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <span class="smalltext"><b>', $txt['parent_boards'], '</b>: ', implode(', ', $children), '</span>
                </td>

Değiştirin:
foreach ($board['children'] as $child)
                    {
                            $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
                            $children[] = $child['new'] ? '<img src="' . $settings['images_url'] . '/on.gif" alt="' . $txt[333] . '" width="15" height="15" style="vertical-align: middle; margin-left: 2px;" /><b>' . $child['link'] . '</b>' : '<img src="' . $settings['images_url'] . '/off.gif" alt="' . $txt[334] . '" width="15" height="15" style="vertical-align: middle; margin-right: 2px;" />' . $child['link'];
                    }

                    echo '
            <tr>
                <td colspan="3" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">
                    <table>
                        <tr>';

                    foreach ($children as $key => $child)
                    {
                        if ($key % 2 == 0 && $key != 0)
                            echo '
                        </tr>
                        <tr>';

                        echo '
                            <td style="padding-left: 10px;"><span class="smalltext">', $child, '</span></td>';
                    }

                        echo '
                        </tr>
                    </table>
                </td>

Sütunları fazlalaştırmak için:
   Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.



2.0 RC1 versiyonu için.
BoardIndex.template.php'de bulun:
<td class="windowbg3 smalltext largepadding"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td>
Değiştirin:
<td class="windowbg3 smalltext largepadding">
               <table>
                  <tr>';

               foreach ($children as $key => $child)
               {
                  if ($key % 2 == 0 && $key != 0)
                     echo '
                  </tr>
                  <tr>';

                  echo '
                     <td style="padding-left: 10px;">', $child, '</td>';
               }

                  echo '
                  </tr>
               </table>
            </td>

Sütunları fazlalaştırmak için:
    Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.

2.0 RC2 ve 2.0 RC3 versiyonu için.
BoardIndex.template.php'de bulun:
<tr><td colspan="3" class="children windowbg"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td></tr>';
Değiştirin:
<tr>
                  <td colspan="3" class="children windowbg">
                     <table>
                        <tr>';

                     foreach ($children as $key => $child)
                     {
                        if ($key % 2 == 0 && $key != 0)
                           echo '
                        </tr>
                        <tr>';

                        echo '
                           <td style="padding-left: 10px;">', $child, '</td>';
                     }

                        echo '
                        </tr>
                     </table>
                  </td>
               </tr>';

Sütunları fazlalaştırmak için:
    Değiştirdiğiniz kodun içerisinde bulunan if ($key % 2 == 0 && $key != 0) kodundaki 2 değerini, istediğiniz değerle değiştirin.

Tenma (http://www.simplemachines.org/community/index.php?action=profile;u=198898)'ya teşekkürler.



arkadaşlar ayarların tümünü yaptım fakat bir çizgi çıktı bu çızgiyi silebirmiyiz yardım ederbilirmisiniz.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.kalitelipaylasim.com%2Ftest%2Ftest.png&hash=a29930b7abede2285c0a790aa8848df9bdd6989e)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: N_O_A on July 23, 2010, 06:33:09 PM
yaptim hatta aldim

resim asagida
http://www.boardsat.com/boardsatresim/solhatta.jpg
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: grafitus on July 24, 2010, 05:19:45 AM
Yaptığınız değişiklikte
Code (Bulun) Select
colspan="3"
Code (Değiştirin) Select
colspan="5"
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: arzum on July 26, 2010, 09:35:03 AM
selam... ben 1.1.11 Nostalji temasini kullaniyorum...verdiginiz kodlari kullana bilirmiyim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: _ImmorTaL_ on August 01, 2010, 11:36:04 AM
teşekkürler
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: daavidoo75 on September 03, 2010, 02:35:24 AM
merhaba arkadaslar foruma yeni bir tema attim ve alt bölümleri alt alta siralamak istiyorum malesef boardindex.php de burda gösterilen yerleri bulamiyorum kac defa kodlari aradim taradim yok lütfen baan yardimci olurmusunuz...forumumuz smf 2.0 rc3
boardindex kodunuda atiyorum yardimci olacak arkadaslara simdiden cok tsk ederim....
function template_main()
{
   global $context, $settings, $options, $txt, $scripturl, $modSettings;

   // Show some statistics if stat info is off.
   if (!$settings['show_stats_index'])
      echo '
   <p id="stats">
      ', $txt['members'], ': ', $context['common_stats']['total_members'], ' ��� ', $txt['posts_made'], ': ', $context['common_stats']['total_posts'], ' ��� ', $txt['topics'], ': ', $context['common_stats']['total_topics'], '
      ', ($settings['show_latest_member'] ? '<br />' . $txt['welcome_member'] . ' <strong>' . $context['common_stats']['latest_member']['link'] . '</strong>' . $txt['newest_member'] : '') , '
   </p>';

   // Show the news fader?  (assuming there are things to show...)
   if ($settings['show_newsfader'] && !empty($context['fader_news_lines']))
   {
      echo '
   <div class="tborder marginbottom">
      <h3 id="newsfader" class="catbg">
         <img id="newsupshrink" src="', $settings['images_url'], '/collapse.gif" alt="*" title="', $txt['upshrink_description'], '" align="bottom" style="display: none;" />
         ', $txt['news'], '
      </h3>
      <div class="windowbg2" id="smfNewsFader">
         <div id="smfFadeScroller"><span>', $context['news_lines'][0], '</span></div>
      </div>
   </div>
   <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/fader.js"></script>
   <script type="text/javascript"><!-- // --><![CDATA[

      // Create a news fader object.
      var oNewsFader = new smf_NewsFader({
         sSelf: \'oNewsFader\',
         sFaderControlId: \'smfFadeScroller\',
         aFaderItems: [
            "',
            implode('",
            "', $context['fader_news_lines']), '"],
         sItemTemplate: ', JavaScriptEscape('<strong>%1$s</strong>'), ',
         iFadeDelay: ', empty($settings['newsfader_time']) ? 5000 : $settings['newsfader_time'], '
      });

      // Create the news fader toggle.
      var smfNewsFadeToggle = new smc_Toggle({
         bToggleEnabled: true,
         bCurrentlyCollapsed: ', empty($options['collapse_news_fader']) ? 'false' : 'true', ',
         aSwappableContainers: [
            \'smfNewsFader\'
         ],
         aSwapImages: [
            {
               sId: \'newsupshrink\',
               srcExpanded: smf_images_url + \'/collapse.gif\',
               altExpanded: ', JavaScriptEscape($txt['upshrink_description']), ',
               srcCollapsed: smf_images_url + \'/expand.gif\',
               altCollapsed: ', JavaScriptEscape($txt['upshrink_description']), '
            }
         ],
         oThemeOptions: {
            bUseThemeSettings: ', $context['user']['is_guest'] ? 'false' : 'true', ',
            sOptionName: \'collapse_news_fader\',
            sSessionVar: ', JavaScriptEscape($context['session_var']), ',
            sSessionId: ', JavaScriptEscape($context['session_id']), '
         },
         oCookieOptions: {
            bUseCookie: ', $context['user']['is_guest'] ? 'true' : 'false', ',
            sCookieName: \'newsupshrink\'
         }
      });
   // ]]></script>';
   }

   /* Each category in categories is made up of:
   id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?),
   new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down image),
   and boards. (see below.) */
   foreach ($context['categories'] as $category)
   {
      // If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
      if (empty($category['boards']) && !$category['is_collapsed'])
         continue;

      echo '
   <div class="categoryframe tborder clearfix">
      <h3 class="catbg', $category['new'] ? '2' : '', '">';

      if (!$context['user']['is_guest'] && !empty($category['show_unread']))
         echo '
         <a class="floatright" href="', $scripturl, '?action=unread;c=', $category['id'], '">', $txt['view_unread_category'], '</a>';

      // If this category even can collapse, show a link to collapse it.
      if ($category['can_collapse'])
         echo '
         <a href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>�';

      echo $category['link'];

      echo '
      </h3>';

      // Assuming the category hasn't been collapsed...
      if (!$category['is_collapsed'])
      {
         echo '
      <table cellspacing="1" class="bordercolor boardsframe">';

         /* Each board in each category's boards has:
         new (is it new?), id, name, description, moderators (see below), link_moderators (just a list.),
         children (see below.), link_children (easier to use.), children_new (are they new?),
         topics (# of), posts (# of), link, href, and last_post. (see below.) */
         foreach ($category['boards'] as $board)
         {
            echo '
         <tr>
            <td', !empty($board['children']) ? ' rowspan="2"' : '', ' class="windowbg icon">
               <a href="', ($board['is_redirect'] || $context['user']['is_guest'] ? $board['href'] : $scripturl . '?action=unread;board=' . $board['id'] . '.0;children'), '">';

            // If the board or children is new, show an indicator.
            if ($board['new'] || $board['children_new'])
               echo '
                  <img src="', $settings['images_url'], '/on', $board['new'] ? '' : '2', '.gif" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" border="0" />';
            // Is it a redirection board?
            elseif ($board['is_redirect'])
               echo '
                  <img src="', $settings['images_url'], '/redirect.gif" alt="*" title="*" border="0" />';
            // No new posts at all! The agony!!
            else
               echo '
                  <img src="', $settings['images_url'], '/off.gif" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';

            echo '
               </a>
            </td>
            <td class="windowbg2 info">
               <h4><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a>';

            // Has it outstanding posts for approval?
            if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics']))
               echo '
                  <a href="', $scripturl, '?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > 0 ? 'topics' : 'posts'), ';brd=', $board['id'], ';', $context['session_var'], '=', $context['session_id'], '" title="', sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>';

            echo '
               </h4>
               <p>', $board['description'] , '</p>';

            // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.)
            if (!empty($board['moderators']))
               echo '
               <p class="moderators">', count($board['moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>';

            // Show some basic information about the number of posts, etc.
               echo '
            </td>
            <td', !empty($board['children']) ? ' rowspan="2"' : '', ' class="windowbg stats smalltext">
               ', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
               ', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
            </td>
            <td', !empty($board['children']) ? ' rowspan="2"' : '', ' class="windowbg2 smalltext lastpost">';

            /* The board's and children's 'last_post's have:
            time, timestamp (a number that represents the time.), id (of the post), topic (topic id.),
            link, href, subject, start (where they should go for the first unread post.),
            and member. (which has id, name, link, href, username in it.) */
            if (!empty($board['last_post']['id']))
               echo '
               <strong>', $txt['last_post'], '</strong>  ', $txt['by'], ' ', $board['last_post']['member']['link'] , '<br />
               ', $txt['in'], ' ', $board['last_post']['link'], '<br />
               ', $txt['on'], ' ', $board['last_post']['time'];
            echo '
            </td>
         </tr>';

            // Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
            if (!empty($board['children']))
            {
               // Sort the links into an array with new boards bold so it can be imploded.
               $children = array();
               /* Each child in each board's children has:
                     id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
               foreach ($board['children'] as $child)
               {
                  if (!$child['is_redirect'])
                     $child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>';
                  else
                     $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';

                  // Has it posts awaiting approval?
                  if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics']))
                     $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';

                  $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
               }
               echo '
         <tr>
            <td class="windowbg3 smalltext largepadding"><strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '</td>
         </tr>';
            }
         }
         echo '
      </table>';
      }
      echo '
   </div>';
   }

   if ($context['user']['is_logged'])
   {
      echo '
   <div id="modbuttons_bottom" class="modbuttons clearfix">
      <div id="posticons" class="clearfix marginbottom">
         <div class="smalltext floatleft" style="margin-left: 1.1em; margin-top: 1em;">
            <img src="', $settings['images_url'], '/new_some.gif" alt="" align="middle" /> ', $txt['new_posts'], '
            <img src="', $settings['images_url'], '/new_none.gif" alt="" align="middle" style="margin-left: 4ex;" /> ', $txt['old_posts'], '
         </div>';

         // Mark read button.
         $mark_read_button = array(
            'markread' => array('text' => 'mark_as_read', 'image' => 'markread.gif', 'lang' => true, 'url' => $scripturl . '?action=markasread;sa=all;' . $context['session_var'] . '=' . $context['session_id']),
         );

         // Show the mark all as read button?
         if ($settings['show_mark_read'] && !empty($context['categories']))
            template_button_strip($mark_read_button, 'top');

         echo '
         </div>
   </div>';
   }

   template_info_center();
}
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: emeric1 on September 24, 2010, 12:11:57 PM
Eski haline döndürmek için kodu silip sizin bulun yazdığınız kodu yapıştırmıştım tekrar şimdi tema ayrıştırma hatası diyor napmalıyım
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: arzum on September 26, 2010, 12:05:42 PM
Selam...Arkadaşlar alt başlıkları alt alta yapmak istiyorum ama Nostalji temasını kullanıyorum...Bu kodları kullansam bir sorun olur mu? Daha öncede yazdım ama cevap veren olmadı...Lütfen bilgi verebilirmisiniz?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Emre A. on September 26, 2010, 01:35:18 PM
Quote from: arzum on September 26, 2010, 12:05:42 PM
Selam...Arkadaşlar alt başlıkları alt alta yapmak istiyorum ama Nostalji temasını kullanıyorum...Bu kodları kullansam bir sorun olur mu? Daha öncede yazdım ama cevap veren olmadı...Lütfen bilgi verebilirmisiniz?

kodları verilen yerlere (uygun yerlere) ekleyin. Sorun olmaz. Verilen kodlar temanızda yoksa xx temanızdaki BoardIndex dosyasını ekte verin yapalım
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Basyigit45 on September 26, 2010, 01:48:21 PM
20RC3 E UYAN SEKLİ VAR MI ACABA ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: arzum on September 26, 2010, 03:33:31 PM
Quote from: Emre Y on September 26, 2010, 01:35:18 PM

kodları verilen yerlere (uygun yerlere) ekleyin. Sorun olmaz. Verilen kodlar temanızda yoksa xx temanızdaki BoardIndex dosyasını ekte verin yapalım

ekledim aynen ama bu şekilde hata verdi malesef :(

You don't have permission to access /forum/index.php on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Arkadaş on October 23, 2010, 09:40:26 AM
Quote from: Yağız... on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.

bu kodu uyguladımda forum hata mesajlarıyla dolup taşıyor :(
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: korsanTURK on October 26, 2010, 05:19:55 PM
yakında ben yayınlaacağım mod kurmadan sadece kodlarda değişiklik yaparak uzun zamandır bu işleri bırakmıştım tekrar dönme kararı aldım yarım klan temamıda bitireceğim:)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yağız... on October 26, 2010, 05:31:31 PM
Quote from: Oyunindir.ws on October 23, 2010, 09:40:26 AM
Quote from: Yağız... on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.

bu kodu uyguladımda forum hata mesajlarıyla dolup taşıyor :(
O kodlar SMF 2.0 RC3 sürümüne uyumlu değil.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: korsanTURK on October 27, 2010, 04:07:45 PM
Quote from: Oyunindir.ws on October 23, 2010, 09:40:26 AM
Quote from: Yağız... on December 28, 2008, 11:00:19 AM
Quote from: gurbetci on December 28, 2008, 10:41:04 AM
<td colspan="5" class="windowbg', !empty($settings['seperate_sticky_lock']) ? '3' : '', '">

usta "0"  yaptim hatta kalkti..

Pekala baslarina nasil resim ekleriz?
Bulun:
                     $children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
Değiştirin:
                     $children[] = $child['new'] ? '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/onk.gif" alt="' . $txt[333] . '"/><b>' . $child['link'] . '</b>' : '<img style="margin-right:5px;" src="' . $settings['images_url'] . '/offk.gif" alt="' . $txt[334] . '"/>' . $child['link'];
Yeni mesaj varken onk.gif, yokken offk.gif gözükür. Ona göre images klasörüne iki tane resim atın.

bu kodu uyguladımda forum hata mesajlarıyla dolup taşıyor :(

http://forum.birhayaldi.com/index.php  burda çoğu şey modsuz kurulu 1 hafta içinde yeniden yaptığım temamı onaya göndereceğim burda dediklerin var alt bölümler vs..vs..
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: hebun on January 09, 2011, 12:58:54 PM
hocam kullandıgım temaya uyumlu kodlar bunlar ;
Stun sayısını ve stun aralıgını nasıl degiştirebilirim teşekkürler.




Quote from: Yağız... on March 02, 2009, 07:33:06 AM
Bulun:
foreach ($board['children'] as $child)
{
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
}

echo '
<div style="padding-top: 1px;" class="smalltext"><i>', $txt['parent_boards'], ': ', implode(', ', $children), '</i></div>';
}

Değiştirin:

$sayac=0;
foreach ($board['children'] as $child)
{
$child['link'] = '<a href="' . $child['href'] . '" title="' . ($child['new'] ? $txt[333] : $txt[334]) . ' (' . $txt[330] . ': ' . $child['topics'] . ', ' . $txt[21] . ': ' . $child['posts'] . ')">' . $child['name'] . '</a>';
$children[] = $child['new'] ? '<b>' . $child['link'] . '</b>' : $child['link'];
$sayac++;
}

echo '
<div style="padding-top: 1px;" class="smalltext">
<table>
<tr>
<td valign="top">
<span class="smalltext"><b>', $txt['parent_boards'], '</b>:<br/>';
for($sayac2 = 0 ; $sayac2 < ceil($sayac/2);$sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span>
</td>
<td width="30"> </td>
<td valign="top">
<span class="smalltext"><br/>';
for(; $sayac2 < $sayac ; $sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span>
</td>
</tr>
</table>
</div>';
}

Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: hebun on January 10, 2011, 09:30:29 AM
Yağız  Hocam niyetim flood yapmak degil ama bi yardımcı olursanız çok sevinirim teşekkürler.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Emre A. on January 10, 2011, 09:47:27 AM
Quote from: hebun on January 10, 2011, 09:30:29 AM
Yağız  Hocam niyetim flood yapmak degil ama bi yardımcı olursanız çok sevinirim teşekkürler.

BoardIndex.template.php dosyanı ekte verir misin?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: hebun on January 10, 2011, 10:04:14 AM
ben 4 stun ve eşit aralık istiyorum münkünse kodları burdan verirseniz bende öğrenmiş olurum yardımınız için Teşekkürler.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: hebun on January 16, 2011, 04:39:31 PM
Sorun çözüldü--eski dosyalar Tidy Child Boards manuel kurulum uyguladım   :D .
Yinede Teşekkürler
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: API_AOE on January 17, 2011, 02:56:29 PM
Eline sağlık
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: arzum on February 11, 2011, 08:10:48 AM
Selam...

ben iki sütun halinde yaptım alt başlıkları ama eşit aralıkta olsun istiyorum bunu nasıl yapabilirim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: watchmovietime on February 27, 2011, 07:29:47 PM
Tema adresim : http://custom.simplemachines.org/themes/index.php?lemma=749
Ektede BoardIndex.template.php'yi koydum.

Lütfen yardımcı olun. :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: watchmovietime on February 28, 2011, 11:27:09 AM
yardım edebilecek kimse yok mu?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: watchmovietime on March 01, 2011, 05:48:05 PM
Kaç gün oldu, yardımcı olan yok mu? Kategorinin moderatörleri nerede ? :(
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yagiz on July 29, 2011, 01:52:57 PM
selam. ilgili arkadaslardan bi isteğim olacaktı ..

ben sitemdeki alt menüleri bu şekilde yapmak istiyorum;

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fs7.directupload.net%2Fimages%2F110729%2Fwqojhhfv.jpg&hash=e3ba55316e7db578c2863d9e0393b31ffe0f8cc9)

ama benim sitemde böyle görünüyor ;

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fs7.directupload.net%2Fimages%2F110729%2Ftd7k63se.jpg&hash=05b23bd861b8e87b10acf6e953048cb602968e69)


yardımlarınızı bekliyorum şimdiden teşekkürler.
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Yagiz on July 30, 2011, 09:26:50 AM
ne zaman biri yardım edecek ama yaaaa  :-\
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: scr34m on August 14, 2011, 02:14:03 PM
eline sağlık işime yarayacak ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: OverTa[k]e on August 28, 2011, 07:39:05 PM
Bende olmadı, yamuk yumuk oldu ve temayıda bozdu ... Yardımcı olabilir misiniz acaba? Bi türlü yapamadım...
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: kafkas066 on September 28, 2011, 04:06:25 PM
smf_2-0-1 kullanıyorum

sizlerden ricam
1 - Alt Bölümler yazısı görünmesin

2 - alt bölümler alt alta ve 4'lü sütun olarak görünsün

naıl yapılır yardımlarınızı bekliyorum
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Blackburn on August 20, 2012, 10:11:52 AM
teşekkürler (https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.smfcanavari.tk%2FSmileys%2Fakyhne%2Fsmiley.gif&hash=bec82e03cde08d3bcfc517b2983a42273655478a)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: serkanfb on May 27, 2013, 05:15:49 AM
merhaba arkadaşlar alt böümleri alt alta oldu ama yazı fontunu büyültmem lazım bulamadım yardımcı olurmusunuz lütfen.
http://www.webmasterkurdu.com/index.php
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: YaramazAskO on August 08, 2013, 06:06:03 AM
Teşekkürler.  ;)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: a11 on January 11, 2014, 09:07:16 AM
2.0.6'da alt bölümler kategori içinde fakat eski sistem yan yana sıralama yapabilir miyiz ?

----

Ek : Sorunun cevabı yine bu konudaymış. :)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Balaban on February 18, 2014, 10:41:06 AM
yine vb temalarının kodları c/p yapıp "ben yaptım" diye dolaşacaksın yani? :)

Quote from: korsanTURK on October 26, 2010, 05:19:55 PM
yakında ben yayınlaacağım mod kurmadan sadece kodlarda değişiklik yaparak uzun zamandır bu işleri bırakmıştım tekrar dönme kararı aldım yarım klan temamıda bitireceğim:)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: ZaferOzturk on August 02, 2016, 06:17:58 AM
Konu eski ancak ben bunu uyguladım foruma ancak her alt bölümün yanına ufak şu tarz '•' bir şey nasıl koyabilirim?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: Emre A. on August 02, 2016, 01:53:02 PM
Quote from: ZaferOzturk on August 02, 2016, 06:17:58 AM
Konu eski ancak ben bunu uyguladım foruma ancak her alt bölümün yanına ufak şu tarz '•' bir şey nasıl koyabilirim?

Konunun cevabı yıllardır var :) Buyur (http://www.simplemachines.org/community/index.php?topic=273005.msg1855825#msg1855825)
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: ZaferOzturk on August 03, 2016, 03:58:06 AM
Quote from: ємяє on August 02, 2016, 01:53:02 PM
Quote from: ZaferOzturk on August 02, 2016, 06:17:58 AM
Konu eski ancak ben bunu uyguladım foruma ancak her alt bölümün yanına ufak şu tarz '•' bir şey nasıl koyabilirim?

Konunun cevabı yıllardır var :) Buyur (http://www.simplemachines.org/community/index.php?topic=273005.msg1855825#msg1855825)

Okudum oraları ama hiç dikkatimi çekmemiş.Çok teşekkürler.  :D
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: SkyMee on August 12, 2016, 06:28:14 AM
Teşekkürler kullanacağım .
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: SkyMee on August 13, 2016, 05:53:54 AM
 BoardIndex.template.php'yi nerede bulabilirim yok dosyalarda?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: SkyMee on August 13, 2016, 07:06:53 AM
Bide bunu her temaya mı uygulamak gerekiyor ben Orange Crush temasını kullanıyorum ?
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: dehset123 on May 19, 2020, 06:37:15 AM
selam smf 2.1 rc2 de alt alta bölüm nasıl ekleirm
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: yeninesil on March 01, 2021, 11:43:45 AM
Elinize sağlık
Title: Re: Alt Bölümleri Alt Alta Sıralama
Post by: ATATURK on April 28, 2022, 05:02:43 PM
Quote from: Yağız... on January 04, 2010, 05:22:26 PMBulun ve silin:
', !empty($board['children']) ? ' rowspan="2"' : '', '

hangi klasor hangi dosyada aratıcaz? telefondan giriyorum rica ediyorum yardımcı olun. ftp şifresi versem bana silermisiniz o kodu arkadaşlar?