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

Question JomSocial and Kunena Menu Plug-in

More
15 years 3 weeks ago #91647 by snilloconator
Would be nice to have this plugin back. I updated not realizing it would break this plugin. :(

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

More
15 years 2 weeks ago #91963 by John
You no longer need this plugin. You can add new menu links in the Joomla menu manager, just add them in the jomsocial menu section.

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

  • lev
  • lev's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
  • Lorem Ipsum...
More
15 years 2 weeks ago - 15 years 2 weeks ago #92132 by lev
Hi
Not quite agree with you. That would have been if the plan or drawing, we have started work. And so, the devil will find bald :evil:

hi
I solved the problem!
Doing everything with options!
Creating all in the same manner as he wrote the main forum it will be everyone else in it.

Name:
Code:
| Forum <=> Форум <=> Perfil Foro <=> Forum |- My Profile <=> Моя анкета <=> Mi Perfil <=> Mon Profil |- Edit Profile <=> Изменить анкету <=> Editar Perfil <=> Editer le Profil |- My Posts <=> Мои сообщения <=> Mis Temas <=> Mes Messages |- My Subscribtions <=> Моя подписка <=> Mis Suscripciones <=> Mes Abonnements |- My Favorites <=> Моё избранное <=> Mis Favoritos <=> Mes Favoris

Signature(not afraid that the big letters become small and the gaps disappear):
Code:
| KUNENAMENU <=> kunenamenu |- sh_editprofile <=> sheditprofile |- sh_myprofile <=> shmyprofile |- sh_myposts <=> shmyposts |- sh_mysubscriptions <=> shmysubscriptions |- sh_myfavorites <=> shmyfavorites

Links:
Code:
| index.php?option=com_kunena |- index.php?option=com_kunena&func=myprofile&task=edit |- index.php?option=com_kunena&func=myprofile |- index.php?option=com_kunena&func=latest&do=userposts |- index.php?option=com_kunena&func=latest&do=subscriptions |- index.php?option=com_kunena&func=latest&do=favorites

:evil:

Sorry for my English.
Last edit: 15 years 2 weeks ago by lev.

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

  • lev
  • lev's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
  • Lorem Ipsum...
More
15 years 1 week ago - 15 years 1 week ago #92497 by lev
Hi
There is a way to plug worked!
Case in point that when the SEO - plugins do not work

Checked on the plugin MyBlogToolbar
There was a need to find a code:
Code:
$toolbar->addItem('MYBLOG', 'MYBLOG_ALL', JText::_('PLG_MYBLOG_TOOLBAR_VIEW_ALL_BLOG'), JRoute::_('index.php?option=com_myblog&Itemid='.$myblogItemId));
Change in
Code:
$toolbar->addItem('MYBLOG', 'MYBLOG_ALL', JText::_('PLG_MYBLOG_TOOLBAR_VIEW_ALL_BLOG'), JURI::base(). ('index.php?option=com_myblog&Itemid='.$myblogItemId));

A similar situation with the plugin Kunena Menu Plug-in
Find
Code:
KunenaRoute::_ JRoute::_
Change in
Code:
JURI::base () .

Good luck!

Sorry for my English.
Last edit: 15 years 1 week ago by lev.

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

More
15 years 6 hours ago - 15 years 6 hours ago #93653 by Idris
hello all,

like lev wrote before you have to replace JRoute::_ and KunenaRoute::_ with JURI::base().

open /plugins/community/kunenamenu.php and replace from line 45 - 55
Code:
if (! Kunena::enabled ()) { $toolbar->addGroup ( 'KUNENAMENU', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_KUNENA_OFFLINE' ), JRoute::_ ( 'index.php?option=com_kunena' ) ); return; } //adding new 'tab' 'Forum Settings' to JomSocial toolbar $toolbar->addGroup ( 'KUNENAMENU', JText::_ ( 'PLG_COMMUNITY_KUNENANENU_FORUM' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=myprofile' ) ); if ( $this->params->get('sh_editprofile') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_EDITPROFILE', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_EDITPROFILE' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=myprofile&task=edit' ) ); if ( $this->params->get('sh_myprofile') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_PROFILE', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_PROFILE' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=myprofile' ) ); if ( $this->params->get('sh_myposts') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_POSTS', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_POSTS' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=latest&do=userposts' ) ); if ( $this->params->get('sh_mysubscriptions') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_SUBSCRIBES', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_SUBSCRIBTIONS' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=latest&do=subscriptions' ) ); if ( $this->params->get('sh_myfavorites') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_FAVORITES', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_FAVORITES' ), KunenaRoute::_ ( 'index.php?option=com_kunena&func=latest&do=favorites' ) );

with
Code:
if (! Kunena::enabled ()) { $toolbar->addGroup ( 'KUNENAMENU', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_KUNENA_OFFLINE' ), JURI::base(). ( 'index.php?option=com_kunena' ) ); return; } //adding new 'tab' 'Forum Settings' to JomSocial toolbar $toolbar->addGroup ( 'KUNENAMENU', JText::_ ( 'PLG_COMMUNITY_KUNENANENU_FORUM' ), JURI::base(). ( 'index.php?option=com_kunena&func=myprofile' ) ); if ( $this->params->get('sh_editprofile') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_EDITPROFILE', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_EDITPROFILE' ), JURI::base(). ( 'index.php?option=com_kunena&func=myprofile&task=edit' ) ); if ( $this->params->get('sh_myprofile') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_PROFILE', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_PROFILE' ), JURI::base(). ( 'index.php?option=com_kunena&func=myprofile' ) ); if ( $this->params->get('sh_myposts') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_POSTS', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_POSTS' ), JURI::base(). ( 'index.php?option=com_kunena&func=latest&do=userposts' ) ); if ( $this->params->get('sh_mysubscriptions') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_SUBSCRIBES', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_SUBSCRIBTIONS' ), JURI::base(). ( 'index.php?option=com_kunena&func=latest&do=subscriptions' ) ); if ( $this->params->get('sh_myfavorites') ) $toolbar->addItem ( 'KUNENAMENU', 'KUNENAMENU_FAVORITES', JText::_ ( 'PLG_COMMUNITY_KUNENAMENU_FAVORITES' ), JURI::base(). ( 'index.php?option=com_kunena&func=latest&do=favorites' ) );


after that changes it work...

Ps: don´t forgett to backup your file.
Last edit: 15 years 6 hours ago by Idris.

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

More
15 years 6 hours ago #93654 by xillibit
by doing that you will lose the url rewriting :(

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.

Time to create page: 0.269 seconds