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

Question Kunena Integration with AUP + Jomsocial at the same time

More
15 years 3 months ago #81356 by grandslamjmh

Mortti wrote: Perhaps, logic might be changed to version K 2.0. I think there is not coming changes for K 1.6.x series.


what about how the ACL systems work? I read that one article but got confused.. I use NOIXACL and none of my access levels show in the latest version.

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

More
15 years 3 months ago #81357 by snilloconator

grandslamjmh wrote:

Mortti wrote: Perhaps, logic might be changed to version K 2.0. I think there is not coming changes for K 1.6.x series.


what about how the ACL systems work? I read that one article but got confused.. I use NOIXACL and none of my access levels show in the latest version.


I have had great success with the following Component!

Artof User

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

More
15 years 3 months ago #81361 by grandslamjmh

snilloconator wrote:

grandslamjmh wrote:

Mortti wrote: Perhaps, logic might be changed to version K 2.0. I think there is not coming changes for K 1.6.x series.


what about how the ACL systems work? I read that one article but got confused.. I use NOIXACL and none of my access levels show in the latest version.


I have had great success with the following Component!

Artof User


whats your setup look like then? because when i tried installing artof-user i couldnt get it to show..

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

More
15 years 3 months ago #81362 by snilloconator
I installed the said component created a user group in artof user "private members" then went to specific category that I wanted to be private in Kunena and set it to "private members".

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

More
15 years 3 months ago #81363 by grandslamjmh
well i guess ill remove the acl i have installed and try out the artof users one.

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

More
15 years 3 months ago - 14 years 8 months ago #83910 by clairestrife
This is a litte hack which made by me, only showing AUP on kunena user profile with jomsocial integration on.

Log on to your back-end -> Go to kunena configuration -> Integration -> set Activity Notifications to Jomsocial

open profile.vertical.php on your website root -> components -> com_kunena -> template -> default -> view.

find code
Code:
<?php defined ( '_JEXEC' ) or die (); if (!isset($this->showUnusedSocial)) $this->showUnusedSocial = false; ?>

bellow this code insert this code
Code:
<?php $userid = intval($this->profile->userid); $query = "SELECT points FROM #__alpha_userpoints WHERE userid = " . $userid ; $db =& JFactory::getDBO(); $db->setQuery( $query ); $myPoints = $db->loadObject(); ?>

so it will become like this
Code:
<?php defined ( '_JEXEC' ) or die (); if (!isset($this->showUnusedSocial)) $this->showUnusedSocial = false; ?> <?php $userid = intval($this->profile->userid); $query = "SELECT points FROM jos_alpha_userpoints WHERE userid = " . $userid ; $db =& JFactory::getDBO(); $db->setQuery( $query ); $myPoints = $db->loadObject(); ?>

then find this code
Code:
<?php if ($this->userpoints) : ?> <span class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') . intval($this->userpoints); ?></span> <?php endif ?>

and replace it with this
Code:
<li class="kpost-userposts"> <?php echo JText::_('COM_KUNENA_AUP_POINTS') ?> <?php echo $myPoints->points; ?></li>

This method will show activity stream and AUP on kunena profile.;)
Last edit: 14 years 8 months ago by clairestrife.
The following user(s) said Thank You: AbleGamers

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

Time to create page: 0.236 seconds