0 Members and 1 Guest are viewing this topic.
// How about the [contact] button? echo '<li', $current_action == 'contact' ? ' id="active"' : '', '><a href="', $scripturl, '?action=contact" ><span>', Contact, '</span>[/url]</li>';
if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm', 'forum')))
// How about the [forum] button? echo '<li', $current_action == 'forum' ? ' id="active"' : '', '><a href="', $scripturl, '?action=forum" ><span>FORUM</span>< / a ></li>';
That really doesn't solve my problem. I know how to add buttons for pages that are part of the forum. What I want to do is add buttons that point to pages NOT part of the forum (links to other parts of the site).This is my forum. http://www.bontempsrp.com/smf/ I want to add a buttons with all the others that points to pages like this one http://www.bontempsrp.com/wordpress/
// How about the [blog] button? echo ' <li><a href="http://www.bontempsrp.com/wordpress/index.php" target="_blank"><span>BLOG</span>< / a></li>';
Add this:Code: [Select]// How about the [blog] button? echo ' <li><a href="http://www.bontempsrp.com/wordpress/index.php" target="_blank"><span>BLOG</span>< / a></li>';...?