Themes/Ultimate
From SMFShopWiki
So much info in so few words. Tooltsy could learn a lot.
In Themes/ultimate/index.template.php, find:
if ($context['current_action'] == 'theme')
Add after:
if ($context['current_action'] == 'shop') $current_action = 'shop';
Also, find:
// The [calendar]! if ($context['allow_calendar']) echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </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 . '"> </td>' : '';
Add after:
// SMFShop echo ($current_action == 'shop' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , ' <td valign="top" class="maintab_' , $current_action == 'shop' ? 'active_back' : 'back' , '"> <a href="', $scripturl, '?action=shop">Shop</a> </td>' , $current_action == 'shop' ? '<td class="maintab_active_' . $last . '"> </td>' : '';