ok, after looking at that, you need to check whether these 2 lines are present in index.template.php file:
- showBanner($zone = 'top');
- showBanner($zone = 'bottom');
If they are not....
Look at the mod and see what it does:
<edit file>
$themedir/index.template.php
</edit file>
<search for>
<td id="bodyarea" style="padding: 1ex 20px 2ex 20px;">';
}
</search for>
<replace>
<td id="bodyarea" style="padding: 1ex 20px 2ex 20px;">';
showBanner($zone = 'top');
}
</replace>
<search for>
function template_main_below()
{
global $context, $settings, $options, $scripturl, $txt;
</search for>
<replace>
function template_main_below()
{
global $context, $settings, $options, $scripturl, $txt;
showBanner($zone = 'bottom');
</replace>
Search for the code blocks and then insert those mod-banner lines. Then it should work, because the mod does not modify anything that Tinyportal touches.