Kunena 7.0.6 & Kunena 6.4.12 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.6 [K 7.0.6] 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 twelfth version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Question Search link in Tab not working when using fb_layout.php

More
15 years 8 months ago #64689 by Bikerznet
I am trying to add a tab to search using fb_layout.php!

I have added the following code to the file and uploaded it but the tab does not show?

code:

$header .= ' <li ';
if ($func == 'search' ) $header .= ' class="Kunena_item_active" ';
$header .=' >'.CKunenaLink::GetSearchLink('<span>'.(array_key_exists('search', $fbIcons) ? '<img src="' . KUNENA_URLICONSPATH . $fbIcons . '" border="0" alt="' . _KUNENA_SEARCH_ADVSEARCH . '" title="' ._KUNENA_SEARCH_ADVSEARCH . '"/>' : _KUNENA_SEARCH_ADVSEARCH).'</span>');
$header .= '</li>';

Any ideas why the tab is not showing?

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

More
15 years 8 months ago #64691 by Bikerznet
Sorted!!!

Coding that I found was incorrect should of been

code:

$header .= '<li ';
if ($func == 'search' ) $header .= ' class="Kunena_item_active" ';
$header .=' >'.CKunenaLink::GetSearchLink($fbConfig, 'search', '', 0, 0,'<span>'.(array_key_exists('search', $fbIcons) ? '<img src="' . KUNENA_URLICONSPATH . '' . $fbIcons . '" border="0" alt="' . _KUNENA_SEARCH_ADVSEARCH . '" title="' . _KUNENA_SEARCH_ADVSEARCH . '"/>' : _KUNENA_SEARCH_ADVSEARCH).'</span>');
$header .= '</li>';

this works has required.

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

Time to create page: 0.238 seconds