Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.

Question Where did default profile contents moved to?

More
13 years 2 months ago #141235 by sunny33days
Hi, in previous Kunena 1.6 and 1.7 versions, the profiles/avatars next to their posts were controlled by this file path: components/com_kunena/template/default/view/profile.vertical.php

I upgraded to Kunena 2.0.4, and although this file is still there, it seems it's not being used for this purpose now. Can you tell me the new file and file path that is overriding this with Kunean 2.0.4?

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

More
13 years 2 months ago #141236 by TKtemp
Hi,


components / com_kunena / template / blue_eagle / html / topic / default_profile_vertical.php
The following user(s) said Thank You: sunny33days

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

More
13 years 2 months ago - 13 years 2 months ago #141245 by sunny33days
Wow good catch. I can see the changes now.. :). Are you also part of the Kunena project.

When I upgraded to Kunena 2.0.4 last night, my Jawards integration stopped working in Kunean (it's suppose to show awards below their avatars in their forum posts). This code worked in all prevous Kunena versions, however stopped working in Kunean 2.0.4 for some reason. The awards are linking up correctly to the jawards they've won, it's just the images aren't displaying. Any idea what should be changed to update it to work with Kunena 2.0.4? This is the code that worked with Kunena 1.6 and 1.7. It workded with Joomla 1.5, 1.6, 1.7, and 2.5, it only stopped working when I upgraded to Kunean 2.0:

www.kunena.org/forum/k-1-6-and-k-1-7-mis...-jawards-integration
Last edit: 13 years 2 months ago by sunny33days.

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

More
13 years 2 months ago #141246 by sunny33days
I'm still having a hard time figuring out how to get the code to past in here, but this is the code I'm referencing here: www.kunena.org/forum/k-1-6-and-k-1-7-mis...-jawards-integration

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

More
13 years 2 months ago #141270 by TKtemp
Hi,

try with this
Code:
<?php // Hack for jAwards integration, displays some medals of the user for Kunena 1.6 $number_medals = 10; // number of medals to show $query = "SELECT b.image, b.name" . "\n FROM #__jawards_awards AS a" . "\n LEFT JOIN #__jawards_medals AS b ON b.id = a.award" . "\n WHERE a.userid=". $this->profile->userid . "\n ORDER BY RAND() LIMIT ".$number_medals; $database = &JFactory::getDbo(); $database->setQuery( $query ); $medals = $database->loadObjectList(); // URL links to the jAwards-Tab for Community Builder which displays all // medals of the user - change to another URL of needed $awards_url=JRoute::_('index.php?option=com_comprofiler&task=userProfile&user='.$this->profile->userid."&tab=getawardstab"); // CSS-class "ja_medals" allows individual styling of medal images and // container. "nobr" keeps the medals from breaking apart, display them // in one row. $msg_jawards = "<div class=\"ja_medals\"><nobr>"; foreach ($medals as $med){ $msg_jawards.= "<a href=\"$awards_url\" title=\"$med->name\">" . "<img style='border:0px;padding:0px;' src=\"".JURI::root(true)."/images/medals/".$med->image ."\" alt=\"".$med->name."\" />" . "</a>"; } $msg_jawards.="</nobr></div>"; unset($medals); echo $msg_jawards; ?>
The following user(s) said Thank You: sunny33days

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

More
13 years 2 months ago #141273 by sunny33days
Oh my god, you're a genius!!! THank you so much!

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

Time to create page: 0.554 seconds