Kunena 6.4.8 Released

The Kunena team has announce the arrival of Kunena 6.4.8 [K 6.4.8] in stable which is now available for download as a native Joomla extension for J! 5.0.x/5.1.x/5.2.x/5.3.x/5.4.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.4
Important note: Go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated. This is particularly necessary for major version jumps so that the table changes are adapted.

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Question Custom Userlist for public viewing

More
14 years 6 months ago #99297 by xillibit
You can add this kind of check :
Code:
if ($this->me->userid != 0) { // show profile link }

I don't provide support by PM, because this can be useful for someone else.

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

More
14 years 6 months ago #99300 by bigblue
apologies.. php is beyond me - where do I put this line ?

SUPPORT KUNENA - The numero uno forum for Joomla !!

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

More
14 years 6 months ago #99305 by xillibit
In the file /components/com_kunena/template/default/userlist/userlist.php,

line 154 :
Code:
<?php if ($this->config->userlist_online || $this->me->userid != 0) : ?> <td class="kcol-mid"> <span class="kicon-button kbuttononline-<?php echo $profile->isOnline(true) ?>"><span class="online-<?php echo $profile->isOnline(true) ?>"><span><?php echo $profile->isOnline() ? JText::_('COM_KUNENA_ONLINE') : JText::_('COM_KUNENA_OFFLINE'); ?></span></span></span> </td> <?php endif; ?>

line 164 :
Code:
<?php if ($this->config->userlist_name || $this->me->userid != 0) : ?> <td class="kcol-mid"><?php echo CKunenaLink::GetProfileLink(intval($user->id), $this->escape($user->name)); ?></td> <?php endif; ?> <?php if ($this->config->userlist_username $this->me->userid != 0) : ?> <td class="kcol-mid"><?php echo CKunenaLink::GetProfileLink(intval($user->id), $this->escape($user->username)); ?></td> <?php endif; ?>

I don't provide support by PM, because this can be useful for someone else.

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

More
14 years 6 months ago #99374 by bigblue
Changing this, I now get a 500 internal server error when accessing the userlist when either logged in or not logged in ?

SUPPORT KUNENA - The numero uno forum for Joomla !!

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

More
14 years 6 months ago #99389 by xillibit
I haven't try it by myself, so it should be an error somewhere

I don't provide support by PM, because this can be useful for someone else.

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

Time to create page: 0.400 seconds