- Posts: 44
- Thank you received: 5
Kunena 6.4.13 Released
The Kunena team has announce the arrival of Kunena 6.4.13 [6.4.13] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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 6.0
Hint: This version is primarily intended to facilitate an upgrade if Joomla was first updated to version 6.1 before Kunena was up to dated.
Question Kunena Login Module 1.6 R2
1. Where do you control the translation of this module? It's not picking up from the component or Joomla settings?
2. The redirect on Log-in is not working? Is this a cache related issue?
3. The sizing of the avatar isn't working either?
Anyway - let us know! Thanks.
Please Log in or Create an account to join the conversation.
- jackdani82
-
- Offline
- New Member
-
- Posts: 6
- Thank you received: 0
1. The module has its own language file (language/en_GB/mod_kunenalogin.ini)
2. The redirect causes problems if you use other login-modules at the same time for example
3. Same problems on my page. I use the Community Builder avatar and not the kunena avatar. Maybe there is still a problem.
Also waitig for answers from Kunena team.
Please Log in or Create an account to join the conversation.
1. Will do.
2. Yup - I have CB installed.
3. Ditto.
Hopefully future releases will improve this module.
Please Log in or Create an account to join the conversation.
1. I can't modify avatar size.
2. When used in horizontal setup, other modules from same position superimpose themselves on the K-login module.
Any ideas?
Please Log in or Create an account to join the conversation.
- loki34829388
-
- Offline
- New Member
-
- Posts: 12
- Thank you received: 0
$avatarlink = str_replace("max-width", "width", $avatarlink);
$avatarlink = str_replace("max-height", "height", $avatarlink);
after line 77 in function kunenaAvatar
so the function looks like this now
*** begin code
function kunenaAvatar($userid) {
$kunena_user = KunenaFactory::getUser ( ( int ) $userid );
$username = $kunena_user->getName(); // Takes care of realname vs username setting
$avatarlink = $kunena_user->getAvatarLink ( '', $this->params->get ( 'avatar_w' ), $this->params->get ( 'avatar_h' ) );
$avatarlink = str_replace("max-width", "width", $avatarlink);
$avatarlink = str_replace("max-height", "height", $avatarlink);
return CKunenaLink::GetProfileLink ( $userid, $avatarlink, $username );
}
*** end code
looks like it was building a link with a max-height max-width style and that didnt work so i replaced it after it was built before it was returned.
enjoy!
Please Log in or Create an account to join the conversation.
- loki34829388
-
- Offline
- New Member
-
- Posts: 12
- Thank you received: 0
it is in class.php
Please Log in or Create an account to join the conversation.