Bueno, aca dejo para poder crear un bloque con los foros mas populares

El bloque se ve asi:

Lo que tienen que hacer es crear un bloque php y pegar este contenido...
<?php
require_once("SSI.php");
global $txt, $settings, $boardurl;
$limit = 10;
$top_boards = ssi_topBoards($limit,'nulled');
echo '
<table class="ssi_table adk_100">
<tr class="catbg">
<th align="left" style="padding: 6px;">', $txt['board'], '</th>
<th align="center" style="padding: 6px;">', $txt['board_topics'], '</th>
<th align="center" style="padding: 6px;">', $txt['posts'], '</th>
</tr>';
foreach ($top_boards as $board)
echo '
<tr>
<td>
<img alt="" style="vertical-align: middle;" src="'.$boardurl.'/adkportal/images/folder.png" />
', $board['link'], $board['new'] ? ' <a href="' . $board['href'] . '"><img src="' . $settings['lang_images_url'] . '/new.gif" alt="' . $txt['new'] . '" /></a>' : '', '</td>
<td align="center">', comma_format($board['num_topics']), '</td>
<td align="center">', comma_format($board['num_posts']), '</td>
</tr>';
echo '
</table>';
?>