- Posts: 44
- Thank you received: 5
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
15 years 6 months ago #64475
by miamiman
Kunena Login Module 1.6 R2 was created 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.
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
-
Less
More
- Posts: 6
- Thank you received: 0
15 years 6 months ago #64503
by jackdani82
Replied by jackdani82 on topic Re: Kunena Login Module 1.6 R2
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.
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.
15 years 6 months ago #64528
by miamiman
Replied by miamiman on topic Re: Kunena Login Module 1.6 R2
Thanks jackdani,
1. Will do.
2. Yup - I have CB installed.
3. Ditto.
Hopefully future releases will improve this module.
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.
15 years 6 months ago #65134
by miamiman
Replied by miamiman on topic Kunena Login Module 1.6.0RC2
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?
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
-
Less
More
- Posts: 12
- Thank you received: 0
15 years 6 months ago #65195
by loki34829388
Replied by loki34829388 on topic Re: Kunena Login Module 1.6.0RC2
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!
$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
-
Less
More
- Posts: 12
- Thank you received: 0
15 years 6 months ago #65196
by loki34829388
Replied by loki34829388 on topic Re: Kunena Login Module 1.6.0RC2
Also. forgot to note.
it is in class.php
it is in class.php
Please Log in or Create an account to join the conversation.
Time to create page: 0.230 seconds