Themes/Anone
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']) <div class="nav_' , $current_action == 'calendar' ? 'active_back' : 'back' , '"> <a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a> </div>' , $current_action == 'calendar' ? '' : '';
Add after:
// SMFShop <div class="nav_' , $current_action == 'shop' ? 'active_back' : 'back' , '"> <a href="', $scripturl, '?action=shop">Shop</a> </div>' , $current_action == 'shop' ? '' : '';