Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Topics must relate to a currently supported version of Kunena. If you are unsure what is the current supported version of Kunena, please go to the download page.

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

Question Fixing JomSocial's plugin with Kunena

More
2 years 10 months ago - 2 years 10 months ago #1 by brentwilliams
Here is the scenario: A guest makes a post on the Kunena forum. Now, when someone looks at that post, if they are a registered user and logged in, then the name of the author of that post shows their own name! In other words, if I go look at that guest post, it shows up as having my name.  I have found the fix, although it is probably not the best approach, so feel free to share an alternative!

I am using the following:

JomSocial v. 4.7.8
Kunena v. 5.2.4
Kunena - JomSocial Integration v. 5.2.4

 I adjusted libraries/kunena/user/user.php around line 750.I replaced this:
Code:
return $profile->getProfileName($this);
With this:
Code:
if($this->userid == 0 ) { return $this->name; } else { return $profile->getProfileName($this); }
Last edit: 2 years 10 months ago by brentwilliams.

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

Time to create page: 0.340 seconds