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
- snilloconator
-
- Offline
- Premium Member
-
- aka snilly
Less
More
15 years 3 weeks ago #91647
by snilloconator
Replied by snilloconator on topic Re: JomSocial and Kunena Menu Plug-in
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.
15 years 2 weeks ago #91963
by John
My websites: AquaInfo.org | AquaInfo.nl
Replied by John on topic Re: JomSocial and Kunena Menu Plug-in
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.
My websites: AquaInfo.org | AquaInfo.nl
Please Log in or Create an account to join the conversation.
15 years 2 weeks ago - 15 years 2 weeks ago #92132
by lev
Sorry for my English.
Replied by lev on topic Re: JomSocial and Kunena Menu Plug-in
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:
Signature(not afraid that the big letters become small and the gaps disappear):
Links:
:evil:
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.
15 years 1 week ago - 15 years 1 week ago #92497
by lev
Sorry for my English.
Replied by lev on topic Re: JomSocial and Kunena Menu Plug-in
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:
Change in
A similar situation with the plugin Kunena Menu Plug-in
Find
Change in
Good luck!
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));
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::_
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.
15 years 6 hours ago - 15 years 6 hours ago #93653
by Idris
Replied by Idris on topic Re: JomSocial and Kunena Menu Plug-in
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
with
after that changes it work...
Ps: don´t forgett to backup your file.
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.
15 years 6 hours ago #93654
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re: JomSocial and Kunena Menu Plug-in
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