Kunena 6.2.5 & module Kunena Latest 6.0.7 released

The Kunena team has announce the arrival of Kunena 6.2.5 [K 6.2.5] which is now available for download as a native Joomla extension for J! 4.3.x/4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Solved no posts headers after upgrade to 5.0.7

More
6 years 11 months ago #1 by sgames
after upgrade my kunena to 5.0.7 (from 5.0.6) i dont have topics in posts header.
see screenshot.

any ideas please?
Attachments:

Please Log in or Create an account to join the conversation.

More
6 years 11 months ago #2 by rich
Install Kunena again then empty the cache.

Please Log in or Create an account to join the conversation.

More
6 years 11 months ago #3 by rsd

rich wrote: Install Kunena again then empty the cache.

@sgames, did this solve your problem?

Please Log in or Create an account to join the conversation.

More
6 years 11 months ago - 6 years 11 months ago #4 by Houndy
It's a layout issue, the header is included in the post, here's how to fix it.

In components/com_kunena/template/crypsis/layouts/message/item/default.php replace this:
Code:
<div class="badger-left badger-info"> <div class="kmessage"> <div class="mykmsg-header"> <?php echo (!$isReply) ? $this->escape($avatarname) . ' ' . JText::_('COM_KUNENA_MESSAGE_CREATED') . ' ' . KunenaForumMessage::getInstance()->getsubstr($this->escape($message->subject), 0, $subjectlengthmessage) : $this->escape($avatarname) . ' ' . JText::_('COM_KUNENA_MESSAGE_REPLIED') . ' ' . KunenaForumMessage::getInstance()->getsubstr($this->escape($message->subject), 0, $subjectlengthmessage); ?> </div>
With this:
Code:
<div class="badger-left badger-info <?php if ($message->getAuthor()->isModerator()) : ?> badger-moderator <?php endif;?> message-<?php echo $this->message->getState(); ?>" data-badger="<?php echo (!$isReply) ? $this->escape($avatarname) . ' ' . JText::_('COM_KUNENA_MESSAGE_CREATED') . ' ' . KunenaForumMessage::getInstance()->getsubstr($this->escape($message->subject), 0, $subjectlengthmessage) : $this->escape($avatarname) . ' ' . JText::_('COM_KUNENA_MESSAGE_REPLIED') . ' ' . KunenaForumMessage::getInstance()->getsubstr($this->escape($message->subject), 0, $subjectlengthmessage); ?>"> <div class="kmessage">

Edit: The topic history has the same issue so in components/com_kunena/template/crypsis/layouts/topic/edit/history.php replace this:
Code:
<div class="badger-left badger-info khistory" > <div class="mykmsg-header"> <?php echo $this->message->displayField('subject'); ?> </div>
With this:
Code:
<div class="badger-left badger-info khistory" data-badger="<?php echo $this->message->displayField('subject'); ?>">
Last edit: 6 years 11 months ago by Houndy.

Please Log in or Create an account to join the conversation.

More
6 years 11 months ago #5 by sgames
all is ok, thanks.

Please Log in or Create an account to join the conversation.

Time to create page: 0.425 seconds