Ok, wydaje mi się że mam już rozwiązanie problemu maxx'a.
W oryginalnej instrukcji trzeba przeprowadzić taką zmianę:
Otwórz plik:
admin/sources/classes/output/publicOutput.php
Znajdź:
if( count( $hook_output ) )
{
foreach( $hook_output as $hook_location => $hook_content )
{
$text = str_replace( '<!--hook.' . $hook_location . '-->', '<!--hook.' . $hook_location . '-->' . $this->replaceMacros( $hook_content ), $text );
}
}
zamień na:
if( count( $hook_output ) )
{
foreach( $hook_output as $hook_location => $hook_content )
{
$text = str_replace( '<!--hook.' . $hook_location . '-->', '<!--hook.' . $hook_location . '-->' . $this->replaceMacros( $hook_content ), $text );
if (in_array( 'skin_forum', $skin_groups ) && $hook_location == 'foreach.skin_boards.boardIndexTemplate.side_blocks.outer.pre')
{
$text = str_replace( '<!--hook.foreach.skin_forum.forumIndexTemplate.side_blocks.outer.pre-->', '<!--hook.foreach.skin_forum.forumIndexTemplate.side_blocks.outer.pre-->' . $this->replaceMacros( $hook_content ), $text );
}
if (in_array( 'skin_topic', $skin_groups ) && $hook_location == 'foreach.skin_boards.boardIndexTemplate.side_blocks.outer.pre')
{
$text = str_replace( '<!--hook.foreach.skin_topic.topicViewTemplate.side_blocks.outer.pre-->', '<!--hook.foreach.skin_topic.topicViewTemplate.side_blocks.outer.pre-->' . $this->replaceMacros( $hook_content ), $text );
}
}
}
Pierwszy post zostanie zmieniony jak DawPi wróci.