Kunena 6.3.7 Released

The Kunena team has announce the arrival of Kunena 6.3.7 [K 6.3.7] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.

Solved no posts headers after upgrade to 5.0.7

More
7 years 8 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
7 years 8 months ago #2 by rich
Install Kunena again then empty the cache.


Important! Always create a backup before you make any changes to your website!

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

More
7 years 8 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
7 years 7 months ago - 7 years 7 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: 7 years 7 months ago by Houndy.

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

More
7 years 7 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.616 seconds