I just made this small modification to one of my Invision Power Board 2.2.2 forums. It adds a link like this to the forum board index footer
This week's active topics
IN the HTML Template go to "Board Index" then "stats_header"
Add in the line surrounded by ******** asterisks (but of course don't include the asterisks themselves!)
<!-- Board Stats -->
<div style="display:{$show['div_fc']}" id="fc_stat">
<div class="maintitle_tab">
<table>
<tr>
<td>
<ul>
<li><p><a href="java script:togglecategory('stat', 0);"><{E_PLUS}></a> {$this->ipsclass->lang['board_stats']}</p></li>
</ul>
</td>
<td>
<ul class="right">
<li><p><a href="{$this->ipsclass->base_url}act=Login&CODE=06">{$this->ipsclass->lang['d_delete_cookies']}</a> · <a href="{$this->ipsclass->base_url}act=Login&CODE=05">{$this->ipsclass->lang['d_post_read']}</a></p></li>
</ul>
</td>
</tr>
</table>
</div>
<div class="borderwrap" style="clear:both;">
<div class="subtitlediv">
<a href="{$this->ipsclass->base_url}act=search&CODE=getactive">{$this->ipsclass->lang['sm_todays_posts']}</a> ·
<a href="{$this->ipsclass->base_url}act=Stats&CODE=leaders">{$this->ipsclass->lang['sm_forum_leaders']}</a> ·
<a href="{$this->ipsclass->base_url}act=stats">{$this->ipsclass->lang['sm_today_posters']}</a> ·
<a href="{$this->ipsclass->base_url}act=Members&max_results=20&sort_key=posts&sort_order=desc&filter=ALL">{$this->ipsclass->lang['sm_all_posters']}</a>
</div>
<div class="formsubtitle">
<if="$this->ipsclass->vars['show_totals'] == 1">
<p class="members">$posts {$this->ipsclass->lang['cs_posts']} | $members {$this->ipsclass->lang['cs_members']}</p>
</if>
<p>$active {$this->ipsclass->lang['cs_active']}</p>
</div>
</div>
</div>
<div style="display:{$show['div_fo']}" id="fo_stat">
<div class="maintitle_tab">
<table>
<tr>
<td>
<ul>
<li><p><a href="java script:togglecategory('stat', 1);"><{E_MINUS}></a> {$this->ipsclass->lang['board_stats']}</p></li>
</ul>
</td>
<td>
<ul class="right">
<li><p><a href="{$this->ipsclass->base_url}act=Login&CODE=06">{$this->ipsclass->lang['d_delete_cookies']}</a> · <a href="{$this->ipsclass->base_url}act=Login&CODE=05">{$this->ipsclass->lang['d_post_read']}</a></p></li>
</ul>
</td>
</tr>
</table>
</div>
<div class="borderwrap" style="clear:both;">
<table class='ipbtable' cellspacing="1">
<tr>
<th align="right" colspan="2">
<div style='text-align:right'>
<a href="{$this->ipsclass->base_url}act=search&CODE=getactive">{$this->ipsclass->lang['sm_todays_posts']}</a> ·
*******************START ADDING STUFF**********************************
<a href="{$this->ipsclass->base_url}act=search&CODE=getnew&active=1&lastdate=604800">This week's active topics</a> ·
********************END ADDING STUFF***********************
<a href="{$this->ipsclass->base_url}act=Stats&CODE=leaders">{$this->ipsclass->lang['sm_forum_leaders']}</a> · <a href="{$this->ipsclass->base_url}act=Stats">{$this->ipsclass->lang['sm_today_posters']}</a> · <a href="{$this->ipsclass->base_url}act=Members&max_results=20&sort_key=posts&sort_order=desc&filter=ALL">{$this->ipsclass->lang['sm_all_posters']}</a>
</div>
</th>
</tr>












