0

我在我的网站中使用 kunena,我想从用户在主页或帖子页面中的最新帖子中删除日期时间中的时间。我%H:%i从语言文件中的变量中删除,但时间仍然显示。我怎样才能删除这个?

4

2 回答 2

1

编辑 kunena 核心的代码。例如在此路径中:

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-03-31T05:21:24.167 回答
0

在 Joomla 后端:

  1. 转到 Kunena 配置页面
  2. 转到“前端”选项卡
  3. 有一个名为“消息时间格式”的参数,您可以将其设置为“隐藏

更新:

话虽如此,我意识到我正在使用 Kunena 2.0.x,你也应该这样做。所以我建议升级到最新版本的 Kunena,它仍然兼容 Joomla 1.5。

于 2013-01-23T10:35:15.637 回答