LOL, that would be more work! If you want to add a link in your forum footer just use something like this to your overall_footer.tpl file:
Code:
<a target="_blank" class="copyright" href="http://www.able2know.com">Ask An Expert</a>
I just had a look at how you are doing with the upgrade and will give you a few suggestions here (since I is here and if you is reading this so is you).
A) Remove the group block from fetch all (unless you want to display a group). If you don't specify a group it slows down the page.
To remove it comment out or delete this:
Code:
// fetch user of a specific group
$member = phpbb_fetch_users();
and this:
Code:<!-- MEMBER -->
<?php if ($member) { ?>
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="28"><span class="cattitle"><?php echo $member[0]['group_name']; ?></span></td>
</tr>
<tr>
<td class="row1" align="left" width="100%">
<span class="gensmall">
<?php for ($i = 0; $i < count($member); $i++) { ?>
<a href="<?php echo $phpbb_root_path; ?>profile.php?mode=viewprofile&u=<?php echo $member[$i]['user_id']; ?>"><b><?php echo $member[$i]['username']; ?></b></a><?php if ($i < (count($member)-1)) { ?>,
<?php } ?>
<?php } ?>
</span>
</td>
</tr>
</table>
<?php } ?>
<!-- MEMBER -->
B) I can give you code to use for a home link. But you need a little graphic thingie.
Go to the home page of this site and save the graphic I use for my "make the site your homepage" script. Or find another image that size to use.
I'll then get the file name and location from you and post you some code to add it to your header.