ok, also in der datei install.xml des paketes findest du alle dateien die geändert werden, welche du in deinem theme ändern musst siehst du da wo überall $themedir steht .zB:
<file name="$themedir/BoardIndex.template.php">
das script sucht dann nach: // Show some statistics next to the link tree if SP1 info is off
<search position="after"><![CDATA[// Show some statistics next to the link tree if SP1 info is off.]]></search>
und fügt im standard theme das hier ein //Display ads on the board index
if (function_exists("show_boardAds"))
{
$ads = show_boardAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
<add><![CDATA[
//Display ads on the board index
if (function_exists("show_boardAds"))
{
$ads = show_boardAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
]]></add>
theodretisch müsstes du das alles in deinem theme ändern! was da noch so in der datei steht.
War das logisch erklärt? naja, ansonsten frägst nochmal nach