Would someone please fix this support forum
banner. It needs a link back to freepgs.com.
Here's how
What I did was change the home button to
read "Forum", and then insert a button called
"Main" right before it.
To do this, go into the file:
forum/themes/default/language/index.english.php,
and change $txt[103] = 'Home" to Read $txt[103] = 'Forum".
To add the new Main Button; go into;
/forum/themes/default/index.template.php
LOOK FOR THIS:
AND ADD THIS CHUNK JUST ABOVE IT:
banner. It needs a link back to freepgs.com.
Here's how

What I did was change the home button to
read "Forum", and then insert a button called
"Main" right before it.
To do this, go into the file:
forum/themes/default/language/index.english.php,
and change $txt[103] = 'Home" to Read $txt[103] = 'Forum".
To add the new Main Button; go into;
/forum/themes/default/index.template.php
LOOK FOR THIS:
Code Select
// SHOW THE [HOME] BUTTOM.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
AND ADD THIS CHUNK JUST ABOVE IT:
Code Select
// HOW ABOUT THE [MAIN] BUTTON?
echo ($current_action == 'main' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'main' ? 'active_back' : 'back' , '">
<a href="../index.php">Main</a>
</td>' , $current_action == 'main' ? '<td class="maintab_active_' . $last . '"> </td>' : '';