- Posts: 18
- Thank you received: 0
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
If you have questions about third-party templates, please use the User-written Templates category or contact the author directly. This category should only be used for questions about templates developed and supported by the Kunena project.
Question including jomsocial menu bar in kunena
I need jomsocial menu tool bar in every page. i got it except kunena when i am trying to put jomsocial menu bar code i got it but the css of the kunena is applied for jomsocial tool bar in template/default/css there are many css files are there in side that i put js style.css but it doesn't work .kunena css is not allowing that so please give me a suggestion ...Thanks
regards
Naresh V
Please Log in or Create an account to join the conversation.
Try to create a new menu item in kunena menu which bring to jomsocial
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.
Thank you very much. but i want the jomsocial menu bar on before the kunena menu bar so no need to go back directly i can click on menu which i need to go so is it possible to do that when i am attempting default css is applying so it is not getting exactly..
Thanks and Regards
Naresh V
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
you can use this code to generate joomsocial toolbar.put this in template com_kunena/Your_template/default/menu.phpif (file_exists( JPATH_ROOT . DS . 'components' . DS . 'com_community' . DS . 'libraries' . DS . 'core.php')) {
if(! class_exists('CFactory'))
{
require_once( JPATH_ROOT . DS . 'components' . DS . 'com_community' . DS . 'libraries' . DS . 'core.php');
}
CFactory::load( 'libraries' , 'toolbar' );
$toolbar_lib = CToolbarLibrary::getInstance();
echo $toolbar_lib->getHTML( $this->_showMiniHeaderUser );
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.