Kunena 6.3.0 released

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

Question Few modification suggestions to source

More
7 years 7 months ago - 7 years 7 months ago #1 by ArnoBrinkman
In file /components/com_kunena/template/crypsis/layouts/topic/item/default.php from line 127
Change H2 please to DIV as is done for 2nd serach at the bottom of the form. Due the differences it's difficult to get both lined out correctly.
Change :
Code:
<h2 class="pull-right"> <?php echo $this->subLayout('Widget/Search') ->set('id', $topic->id) ->set('title', JText::_('COM_KUNENA_SEARCH_TOPIC')) ->setLayout('topic'); ?> </h2>
to
Code:
<div class="ksearchbox pull-right"> <?php echo $this->subLayout('Widget/Search') ->set('id', $topic->id) ->set('title', JText::_('COM_KUNENA_SEARCH_TOPIC')) ->setLayout('topic'); ?> </div>
also adding the extra classname to the one in the bottom


In file /components/com_kunena/template/crypsis/layouts/user/profile/default.php from line 22
Add initializations of the three variables
Code:
$rankImage = null; $rankTitle = null; $personalText = null; if ($show) { if (KunenaConfig::getInstance()->showkarma) { $karma = $user->getKarma(); } $rankImage = $user->getRank($this->category_id, 'image'); $rankTitle = $user->getRank($this->category_id, 'title'); $personalText = $user->getPersonalText(); } ?> <ul class="unstyled center profilebox">

Regards,
Arno

TradingTalk
Last edit: 7 years 7 months ago by ArnoBrinkman. Reason: unique classname for searchbox

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

Time to create page: 0.330 seconds