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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question Kunena Login Module 1.6 R2

More
15 years 6 months ago #64475 by miamiman
THis module still needs work apparently...

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.

More
15 years 6 months ago #64503 by jackdani82
Hi miamiman,

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.

More
15 years 6 months ago #64528 by miamiman
Thanks jackdani,

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.

More
15 years 6 months ago #65134 by miamiman
I'm finding a few issues:

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.

More
15 years 6 months ago #65195 by loki34829388
i'm not sure if it helps you but to solve it for myself i simply did a string replace on the avatar link

$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.

More
15 years 6 months ago #65196 by loki34829388
Also. forgot to note.

it is in class.php

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

Time to create page: 0.257 seconds