- Posts: 20
- Thank you received: 0
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Solved no posts headers after upgrade to 5.0.7
8 years 11 months ago #184847
by sgames
no posts headers after upgrade to 5.0.7 was created by sgames
Please Log in or Create an account to join the conversation.
8 years 11 months ago #184856
by rich
Important! Always create a backup before you make any changes to your website!
Replied by rich on topic no posts headers after upgrade to 5.0.7
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.
8 years 11 months ago #184900
by rsd
Replied by rsd on topic no posts headers after upgrade to 5.0.7
@sgames, did this solve your problem?rich wrote: Install Kunena again then empty the cache.
Please Log in or Create an account to join the conversation.
8 years 11 months ago - 8 years 11 months ago #185029
by Houndy
Replied by Houndy on topic no posts headers after upgrade to 5.0.7
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:
With this:
Edit: The topic history has the same issue so in components/com_kunena/template/crypsis/layouts/topic/edit/history.php replace this:
With this:
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>
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>
Code:
<div class="badger-left badger-info khistory" data-badger="<?php echo $this->message->displayField('subject'); ?>">
Last edit: 8 years 11 months ago by Houndy.
Please Log in or Create an account to join the conversation.
8 years 11 months ago #185076
by sgames
Replied by sgames on topic no posts headers after upgrade to 5.0.7
all is ok, thanks.
Please Log in or Create an account to join the conversation.
Time to create page: 0.268 seconds