Пока добился того, что переместил содержимое колонки Опубликовано в Колонку Краткая информация дивом. Но у меня не по центру располагается, не селен в хтмл)) попробовал вставить по центру не получилось все чота разъехалось... Подскажите как сделать по центру все.. и как закоментить или может просто удалить содержимое колонки Опубликовано? Что значит закоментить?
Вот содержимое колонки Опубликовано, у меня находится на 291 строке, вставил его между ноу пик и кнопками изменить удалить.
<div>
<?php
$iconflag = false;
if (($conf->show_new == true)&&($this->isNewcontent($content->date_created,$conf->nbdays_new))) {
echo "<div class='center'><img align='center' src='".$this->baseurl."components/com_adsmanager/images/new.gif' /> ";
$iconflag = true;
}
if (($conf->show_hot == true)&&($content->views >= $conf->nbhits)) {
if ($iconflag == false)
echo "<div class='center'>";
echo "<img align='center' src='".$this->baseurl."components/com_adsmanager/images/hot.gif' />";
$iconflag = true;
}
if ($iconflag == true)
echo "</div>";
echo $this->reorderDate($content->date_created);
?>
<br />
<?php
if ($content->userid != 0)
{
echo JText::_('ADSMANAGER_FROM')." ";
if ($conf->comprofiler == 2)
{
$target = JRoute::_("index.php?option=com_comprofiler&task=userProfile&tab=adsmanagerTab&user=".$content->userid."&Itemid=".$this->Itemid);
}
else
{
$target = JRoute::_("index.php?option=com_adsmanager&view=list&user=".$content->userid."&Itemid=".$this->Itemid);
}
if ($conf->display_fullname == 1)
echo "<a href='".$target."'>".$content->fullname."</a><br/>";
else
echo "<a href='".$target."'>".$content->user."</a><br/>";
}
?>
<?php echo sprintf(JText::_('ADSMANAGER_VIEWS'),$content->views); ?>
</div>