我在我的网站上使用kunena,我想从用户在主页或帖子页面的最新帖子中删除日期时间。我从语言文件中的%H:%i变量中删除了它,但时间仍然显示。我怎样才能删除这个?
发布于 2013-03-31 13:21:24
编辑kunena core的代码。例如,在以下路径中:
components/com_kunena/template/yourTemplate/view/message.php我编辑了这个:
<span class="kmsgdate kmsgdate-left" title="<?php echo CKunenaTimeformat::showDate($this->msg->time, 'config_post_dateformat_hover') ?>">
<?php echo CKunenaTimeformat::showDate($this->msg->time, 'config_post_dateformat'); ?>
</span>至:
<span class="kmsgdate kmsgdate-left" title="<?php echo CKunenaTimeformat::showDate($this->msg->time, 'config_post_dateformat_hover') ?>">
<?php
$dateTime = CKunenaTimeformat::showDate($this->msg->time, 'config_post_dateformat');
$date = explode(" ", $dateTime);
echo $date[1];
?>
</span>并且只会显示日期。
发布于 2013-01-23 18:35:16
在Joomla后台:
更新:
话虽如此,我意识到我使用的是Kunena 2.0.x,你也应该这样做。因此,我建议升级到最新版本的Kunena,它仍然兼容Joomla 1.5。
https://stackoverflow.com/questions/14477328
复制相似问题