Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question Karma not showing when profile set to top. Bug?

More
15 years 4 months ago #79747 by yaksushi
Noticed when I switched my forum setup so the profiles are on top the Karma + - does not show up.





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

More
15 years 4 months ago #79748 by yaksushi
Issue fixed by Neocold "Thanks again Neo" :)


Neocold wrote: yaksushi,

Congratulations you have found a Kunena bug! Hehe, this is not brought on by my hack but the simple solution is to go to **/components/com_kunena/template/default/view/profile.horizontal.php and replace:

Code:
<div> <?php if ($this->userposts) : ?> <span class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') . intval($this->userposts); ?></span> <?php endif ?> <?php if ($this->userpoints) : ?> <span class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') . intval($this->userpoints); ?></span> <?php endif ?> </div>

with:
Code:
<div> <?php if ($this->userposts) : ?> <span class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') . intval($this->userposts); ?></span> <?php endif ?> <?php if ($this->userpoints) : ?> <span class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') . intval($this->userpoints); ?></span> <?php endif ?> <?php if ( $this->userkarma ) : ?> <li class="kpost-karma"> <span class="kmsgkarma"> <?php echo $this->userkarma ?> </span> </li> <?php endif ?> </div>

It would appear that when the karma was added someone forgot to add it to the horizontal as they did the vertical profile display.

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

More
15 years 4 months ago #79751 by xillibit
Hello,

It's a known issue in k1.6.1 and it's fixed into K1.6.2

I don't provide support by PM, because this can be useful for someone else.

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

More
15 years 4 months ago #79772 by yaksushi

xillibit wrote: Hello,

It's a known issue in k1.6.1 and it's fixed into K1.6.2


Guess I better get upgrading! Thanks! :)

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

Time to create page: 0.252 seconds