Quote Originally Posted by athena View Post
I've also just noticed...did it change? I don't know......
That my forum link does not appear in the Information Drop Down Menu; however, it is in the information sidebox.
You'll have to add that manually, as I didn't add that functionality to it, but I will add it to the next version.

You would open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and insert this:

Code:
<?php  if ( (isset($phpBB->phpBB['db_installed_config']) && $phpBB->phpBB['db_installed_config']) && (isset($phpBB->phpBB['files_installed']) && $phpBB->phpBB['files_installed'])  && (PHPBB_LINKS_ENABLED=='true')) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_BB_INDEX, '', 'NONSSL'); ?>" target="_blank"><?php echo BOX_BBINDEX; ?></a></li>
<?php } ?>
where you'd like the forum link.