FRIHOSTFORUMSFAQTOSBLOGSDIRECTORY
You are invited to Log in or Register a Frihost Account!

Editing SMF forum main menu

 


dude_xyx
Could someone tell me where I can edit the main menu of a SMF forum ? I Want to add two more links to the menu.

.
devotchka
It will depend on which type of menu you are using.
1-If you are using images: Babylon theme, the Classic theme or a theme that is based on one of them.

If so, try opening the themes/yourthemenamehere | classic | custom_theme/index.template.php file
Find the place where you want to place the button, e.g.: profile

Code:
// Edit Profile... [profile]
   if ($context['allow_edit_profile'])
      echo '
            <a href="', $scripturl, '?action=profile">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/profile.gif" alt="' . $txt[79] . '" style="margin: 2px 0;" border="0" />' : $txt[467]), '</a>', $context['menu_separator'];


and add your new button right after(suppose we are adding a chatroom button:

Code:
// The Chat Room
      echo '
            <a href="', $scripturl, '?action=chat">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/chat.gif" alt="Chat" style="margin: 2px 0;" border="0" />' : $txt[467]), '</a>', $context['menu_separator'];



Save and upload the files.

If you are showing the buttons as images instead of text you will also need to create an image button with the name of your new menu option written on it, then save it as a .gif file and upload it to your theme's images/[yourlanguage] directory as well.



2-If you are using an image-less menu.

In index.template.php, search for
Code:
if ($context['current_action'] == 'search2')
      $current_action = 'search';


and place

Code:
if ($context['current_action'] == 'chat')
      $current_action = 'chat';
right after.
dude_xyx
this is the forum i want to change main menu

http://forums.mangaraiders.com
Reply to topic    Frihost Forum Index -> Scripting -> Website Software

FRIHOST HOME | FAQ | TOS | ABOUT US | CONTACT US | SITE MAP
© 2005-2007 Frihost, forums powered by phpBB.