вопрос
По умолчанию используется relatednews.tpl
Для категорий 1,2,3 использовать relatednews_2.tpl, для 4,5,6 relatednews_3.tpl и тд.
Для категорий 1,2,3 использовать relatednews_2.tpl, для 4,5,6 relatednews_3.tpl и тд.
1. Открыть /engine/modules/show.full.php найти :
2. В fullstory.tpl прописывать так
$tpl2->load_template( 'relatednews.tpl' );Заменить на :
if (stripos($tpl->copy_template, "{related-news:") !== false)Далее найти :
{
preg_match("#\\{related-news:(.+?)\\}#is", $tpl->copy_template, $related_matches);
$tpl2->load_template( $related_matches[1] . '.tpl' );
}
else
$tpl2->load_template( 'relatednews.tpl' );
$tpl->set( '{related-news}', $related_buffer );Заменить на :
if (stripos($tpl->copy_template, "{related-news:") !== false)
$tpl->set( '{related-news:'.$related_matches[1].'}', $related_buffer );
else
$tpl->set( '{related-news}', $related_buffer );
2. В fullstory.tpl прописывать так
[cat-list=1,2,3]{related-news:relatednews_2}[/cat-list]