* HAFTANIN FLATCAST FCP TEMALARI

                                                           

Gönderen Konu: smf Foruma Acilir menu yapma  (Okunma sayısı 1788 defa)

0 Üye ve 1 Ziyaretçi konuyu incelemekte.

  • admin

  • Bilgi paylastikca guzellesir
  • Genel Yonetici
  • *
  • Karma: 7954
  • İleti: 9083
  • Nerden:FRANSA (Paris)
  • Cinsiyet: Bay
smf Foruma Acilir menu yapma
« : Nisan 04, 2011, 11:48:28 ÖÖ »
1. index.template.php dosyanızın yedeğini alınız.index Templatede

2. Bul ve sil:
Kod: [Seç]
// Show the [help] button.    echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">                   
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>       
        </td>' , $current_action == 'help' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : ''; 
  // How about the [search] button?    if ($context['allow_search'])     
  echo ($current_action == 'search' || $context['browser']['is_ie4']) ?
 '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'search' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=search">' , $txt[182] , '</a>                </td>' , $current_action == 'search' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // Is the user allowed to administrate at all? ([admin])    if ($context['allow_admin'])        echo ($current_action == 'admin'
|| $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'admin' ? 'active_back' : 'back' , '">                 
  <a href="', $scripturl, '?action=admin">' , $txt[2] , '</a>             
  </td>' , $current_action == 'admin' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // Edit Profile... [profile]    if ($context['allow_edit_profile'])        echo ($current_action == 'profile' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'profile' ? 'active_back' : 'back' , '">   
                 <a href="', $scripturl, '?action=profile">' , $txt[79] , '</a>                </td>' , $current_action == 'profile' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // Go to PM center... [pm]    if ($context['user']['is_logged'] && $context['allow_pm'])        echo ($current_action == 'pm' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'pm' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a>                </td>' , $current_action == 'pm' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // The [calendar]!    if ($context['allow_calendar'])        echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'calendar' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a>                </td>' , $current_action == 'calendar' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // the [member] list button
   if ($context['allow_memberlist'])        echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a>                </td>' , $current_action == 'mlist' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // If the user is a guest, show [login] button.    if ($context['user']['is_guest'])        echo ($current_action == 'login' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'login' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=login">' , $txt[34] , '</a>                </td>' , $current_action == 'login' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // If the user is a guest, also show [register] button.    if ($context['user']['is_guest'])        echo ($current_action == 'register' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'register' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=register">' , $txt[97] , '</a>                </td>' , $current_action == 'register' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // Otherwise, they might want to [logout]...    if ($context['user']['is_logged'])        echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '                <td valign="top" class="maintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">                    <a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>                </td>' , $current_action == 'logout' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';    // The end of tab section.    echo '                <td class="maintab_' , $last , '">&nbsp;</td>            </tr>


        3- Index Templatede asagidaki kodu bul

Kod: [Seç]
</head>4-asagidaki kodu yukardaki kodun ust tarafina ekleyin
Kod: [Seç]
<link rel="stylesheet" href="11xmenu_files/cbcscb11xmenu.css" type="text/css" />5-Index Templatede asagidaki kodu bul
Kod: [Seç]
// Show the menu here, according to the menu sub template.6- asagidaki kodu yukardaki kodun uzerine ekleyiniz
Kod: [Seç]
echo ' <br /><ul id="ebul_cb11xmenu_1" class="ebul_cb11xmenu" style="display: none;"><li><a href="index.php?action=unread" target="_top" title="">Okumadıklarım</a></li><li><a href="index.php?action=unreadreplies" target="_top" title="">Değişenler</a></li><li><a href="index.php?action=stats" title="">İstatistikler</a></li><li><a href="index.php?action=recent" target="_top" title="">Son Mesajlar</a></li></ul><ul id="ebul_cb11xmenu_2" class="ebul_cb11xmenu" style="display: none;"><li><a href="index.php?action=mlist;sa=search" target="_top" title="">Üyelerde Ara</a></li></ul><ul id="ebul_cb11xmenu_3" class="ebul_cb11xmenu" style="display: none;"><li><a href="index.php?action=featuresettings" target="_top" title="">Forum Seçenekleri</a></li><li><a href="index.php?action=manageboards" target="_top" title="">Kategoriler</a></li><li><a href="index.php?action=maintain" target="_top" title="">Forum Bakımı</a></li></ul><ul id="ebul_cb11xmenu_5" class="ebul_cb11xmenu" style="display: none;"><li><a href="index.php?action=pm" target="_top" title="">Gelen Mesajlar</a></li><li><a href="index.php?action=pm;f=outbox" title="">Giden Mesajlar</a></li></ul><ul id="ebul_cb11xmenu_9" class="ebul_cb11xmenu" style="display: none;"><li><a href="Link 1 adresi" target="_top" title="">Link 1</a></li><li><a href="Link2 Adresi" target="_top" title="">Link 2</a></li><li><a href="Link 3 Adresi" target="_top" title="">Link 3</a></li><li><a href="Link 4 Adresi" target="_top" title="">Link 4</a></li><li><a href="Link 5 Adresi" target="_top" title="">Link 5</a></li></ul><ul id="cb11xmenuebul_table" class="cb11xmenuebul_menulist" style="width: 761px; height: 26px;">  <li class="spaced_li"><a href="index.php" target="_top"><img id="cbi_cb11xmenu_1" src="11xmenu_files/ebbtcb11xmenu1_0.gif" name="ebbcb11xmenu_1" width="93" height="26" style="vertical-align: bottom;" border="0" alt="Anasayfa" title="" /></a></li>  <li class="spaced_li"><a href="index.php?action=mlist" target="_top"><img id="cbi_cb11xmenu_2" src="11xmenu_files/ebbtcb11xmenu2_0.gif" name="ebbcb11xmenu_2" width="78" height="26" style="vertical-align: bottom;" border="0" alt="Üyeler" title="" /></a></li>'; if ($context['allow_admin'])echo '<li class="spaced_li"><a href="index.php?action=admin" target="_top"><img id="cbi_cb11xmenu_3" src="11xmenu_files/ebbtcb11xmenu3_0.gif" name="ebbcb11xmenu_3" width="76" height="26" style="vertical-align: bottom;" border="0" alt="Admin" title="" /></a></li>';   if ($context['allow_edit_profile'])echo '  <li class="spaced_li"><a href="index.php?action=profile" target="_top"><img id="cbi_cb11xmenu_4" src="11xmenu_files/ebbtcb11xmenu4_0.gif" name="ebbcb11xmenu_4" width="62" height="26" style="vertical-align: bottom;" border="0" alt="Profil" title="" /></a></li>  <li class="spaced_li"><a href="index.php?action=pm" target="_top"><img id="cbi_cb11xmenu_5" src="11xmenu_files/ebbtcb11xmenu5_0.gif" name="ebbcb11xmenu_5" width="87" height="26" style="vertical-align: bottom;" border="0" alt="İletilerim" title="" /></a></li> ';  if ($context['user']['is_logged'])echo ' <li><a href="' , $scripturl, '?action=logout;sesc=', $context['session_id'], '" target="_top"><img id="cbi_cb11xmenu_6" src="11xmenu_files/ebbtcb11xmenu6_0.gif" name="ebbcb11xmenu_6" width="59" height="26" style="vertical-align: bottom;" border="0" alt="Çıkış" title="" /></a></li>  ';if ($context['user']['is_guest'])echo ' <li class="spaced_li"><a href="index.php?action=register" target="_top"><img id="cbi_cb11xmenu_7" src="11xmenu_files/ebbtcb11xmenu7_0.gif" name="ebbcb11xmenu_7" width="70" height="26" style="vertical-align: bottom;" border="0" alt="Üye Ol" title="" /></a></li>  <li class="spaced_li"><a href="index.php?action=login" target="_top"><img id="cbi_cb11xmenu_8" src="11xmenu_files/ebbtcb11xmenu8_0.gif" name="ebbcb11xmenu_8" width="79" height="26" style="vertical-align: bottom;" border="0" alt="Giriş Yap" title="" /></a></li>';echo '  <li class="spaced_li"><a target="_top"><img id="cbi_cb11xmenu_9" src="11xmenu_files/ebbtcb11xmenu9_0.gif" name="ebbcb11xmenu_9" width="102" height="26" style="vertical-align: bottom;" border="0" alt="Extra Menü" title="" /></a></li>  <li><a href="index.php?action=search" target="_top"><img id="cbi_cb11xmenu_10" src="11xmenu_files/ebbtcb11xmenu10_0.gif" name="ebbcb11xmenu_10" width="55" height="26" style="vertical-align: bottom;" border="0" alt="Ara" title="" /></a></li></ul><script type="text/javascript" src="11xmenu_files/cbjscb11xmenu.js"></script>';
7-Asagidan indireceğiniz sıkıştırılmış klasörden cikan menu dosyasinda bulunan dosyalari  forum dizinine yani settings.php dosyasının olduğu yere atın
8-Extra menü butonuna alt menü linkleri eklemek için şu kodları kendinize göre editleyebilirsiniz.

Kod: [Seç]
<li><a href="Link 1 adresi" target="_top" title="">Link 1</a></li><li><a href="Link2 Adresi" target="_top" title="">Link 2</a></li><li><a href="Link 3 Adresi" target="_top" title="">Link 3</a></li><li><a href="Link 4 Adresi" target="_top" title="">Link 4</a></li><li><a href="Link 5 Adresi" target="_top" title="">Link 5</a></li>
reklam
Degerini Bil Degerin Bilinsin

  • Dünya

  • 𐱅𐰇𐰼𐰚 - 𐱅𐰇𐰼𐰰
  • Yonetici
  • *
  • Karma: 10204
  • İleti: 11668
  • Nerden:Dünya
  • Cinsiyet: Bayan
Ynt: smf Foruma Acilir menu yapma
« Yanıtla #1 : Aralık 20, 2019, 05:31:50 ÖS »
Paylaşim icin cok Tesekkürler..
reklam

Keşke sevgi ağaç dallarında asılı olsaydı..
Sadece sevgi mi?Saygı,Sadakat,
Huzur,Terbiye,Barış,
Kardeşlik..
Herkes toplayıp birbirine dağıtabilseydi..

Etiket:

 delicious  digg  facebook  furl  linkedin  myspace  reddit  stumble  technorati  twitter