Themes/ApolloBB

From SMFShopWiki

Jump to: navigation, search

So much info in so few words. Tooltsy could learn a lot.

In Themes/anone/index.template.php, find:

  1. if ($context['current_action'] == 'theme')
  2. $current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin';

Add after:

  1. if ($context['current_action'] == 'shop')
  2. $current_action = 'shop';

Also, find:

  1. // The [calendar]!
  2. if ($context['allow_calendar'])
  3. echo '
  4. <a href="', $scripturl, '?action=calendar" ' , $current_action == 'calendar' ? 'class="nav_important"' : '' , '>' , $txt['calendar24'] , '</a>&nbsp;|';

Add after:

  1. // SMFShop
  2. echo '
  3. <a href="', $scripturl, '?action=shop" ' , $current_action == 'shop' ? 'class="nav_important"' : '' , '>Shop</a>&nbsp;|';
Personal tools