- Posts: 11
- 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
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, the ideas in these topics may not work with later versions and, for that reason, the topics are locked.
Question JomSocial and Kunena 1.5.4 SEF URL to Profile is not correct :(
i use joomla 1.5.12 with JomSocial 1.2.204 Pro and Kunena 1.5.4 and SEF enabled
i try to visit a jomsocial profile under kunena (by clicking the avatar of the other user or on the name) it displays the Groups of the user so the link is not correct
look
by mouseover the avatar it shows www.site.net/community/gruppen/username/profile.html
but it must show
www.site.net/community/bearbeiten/username/profile.html
how i can fix that?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- KOSTEK
-
- New Member
-
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
www.kunena.com/forum/11-jomsocial/11435-...unenajomsocialitemid
That was an old post and when I checked the current file, I see that this code has been included, but it was still the problem. Here's what I did to fix my problem:
Line 64 - /components/com_kunena/class.kunena.php
This fixed all the "profile" links in Kunena, for me. Hope it helps you
Please Log in or Create an account to join the conversation.
farseer wrote:
I had a similar problem. I found this post
www.kunena.com/forum/11-jomsocial/11435-...unenajomsocialitemid
That was an old post and when I checked the current file, I see that this code has been included, but it was still the problem. Here's what I did to fix my problem:
Line 64 - /components/com_kunena/class.kunena.phpI changed it to:Code:$kunena_db->setQuery("SELECT id FROM #__menu WHERE link LIKE 'index.php?option=com_community%' AND published='1' LIMIT 1");Code:$kunena_db->setQuery("SELECT id FROM #__menu WHERE link LIKE 'index.php?option=com_community&view=frontpage' AND published='1'");
This fixed all the "profile" links in Kunena, for me. Hope it helps you
Please Log in or Create an account to join the conversation.