I am using Tiny Portal v 0.8.6 and SMF 1.1 RC2. I created the downloads module in TP. Here is the thing. I want to create a Downloads section on the title bar (FORUM, HELP, SEARCH, PROFILE) up at top instead of only being able to view the Downloads under the Modules section when I add the User block. I do not want to use the user block. Is there anyway I can add Downloads to that menu bar so it will take them directly to the downloads section in TP? tia
If you are familiar with where the tabs code is add this code:
// Show the [Downloads] button.
echo ($current_action == 'tpmod;dl' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'tpmod;dl' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=tpmod;dl">Downloads</a>
</td>' , $current_action == 'tpmod;dl' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
That will add the downloads button to your navigation bar.