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

Solved Category Icons 4.0.9 - Blue Eagle

More
8 years 2 months ago #1 by vlad22151
Hello, i'm found an issue after modify my category icon.


This is the defaut icon and the html that show up.
Code:
<td class="kcol-first kcol-category-icon hidden-phone"> <a href="/index.php/forum/bienvenue" rel="follow"><span class="kicon kunreadforum" title="New Posts"></span></a> </td>

And the custom icon html :
Code:
<td class="kcol-first kcol-category-icon hidden-phone"> <i class="icon-big icon-gs "></i> </td>

I need to modify the custom icon html by the default.

Where is this file ? (ps : it will solve the problems btw)

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

More
8 years 2 months ago #2 by 810
The following user(s) said Thank You: vlad22151

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

More
8 years 2 months ago - 8 years 2 months ago #3 by vlad22151
Ok Done :

So here we go :
Icons file :components\com_kunena\template\blue_eagle\images\icons
Css file :components\com_kunena\template\blue_eagle\css
Inside css fle :
Code:
#Kunena span.icon-gs { background: url("../images/icons/icon.png") no-repeat left center; width:32px; height:32px; }

Now in the file :

components\com_kunena\template\blue_eagle\html\category \ list_embed.php

Replace this line :
Code:
<i class="icon-big <?php echo $category->icon;?> <?php if ($category->getNewCount()) :?> icon-knewchar <?php endif; ?>"></i>

By theses line :
Code:
<?php $icon_class = "<span class=\"kicon icon-big $category->icon \" title=\"No New Posts\"></span>";?> <?php echo $this->getCategoryLink($category, $icon_class, ''); ?>

And here we go :)
It will work great now :)
Last edit: 8 years 2 months ago by vlad22151.

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

Time to create page: 0.510 seconds