Themes/Arcane Magic
From SMFShopWiki
This page explains how to add a shop button to the menubar on the Arcane Magic theme. Note that to completely integrate SMFShop with this theme, you'll also need to edit Display.template.php, so that the SMFShop information is displayed next to user's posts. Please see the Themes page for information on how to do this
In Themes/[theme name]/index.template.php, find:
// The [calendar]! if ($context['allow_calendar']) echo ' <a href="', $scripturl, '?action=calendar">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/calendar.gif" alt="' . $txt['calendar24'] . '" style="margin: 2px 0;" border="0" />' : $txt['calendar24']), '</a>', $context['menu_separator'];
Add after:
// SMFShop echo ' <a href="', $scripturl, '?action=shop">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/shop.gif" alt="Shop" style="margin: 2px 0;" border="0" />' : 'Shop'), '</a>', $context['menu_separator'];
Use the button attached to the post at http://www.daniel15.com/forum/index.php/topic,194.0.html (you'll need to log in to see it). This should be saved to Themes/[theme name]/images/english/shop.gif
