Themes/ApolloBB
From SMFShopWiki
So much info in so few words. Tooltsy could learn a lot.
In Themes/anone/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 ' <a href="', $scripturl, '?action=calendar" ' , $current_action == 'calendar' ? 'class="nav_important"' : '' , '>' , $txt['calendar24'] , '</a> |';
Add after:
// SMFShop echo ' <a href="', $scripturl, '?action=shop" ' , $current_action == 'shop' ? 'class="nav_important"' : '' , '>Shop</a> |';