- Posts: 30
- Thank you received: 0
Kunena 7.0.8 Released
The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] 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 7.0
This category contains miscellaneous, uncategorised third-party extensions (e.g. JomSocial, Community Builder, etc.) relating to older versions of Kunena that are no longer supported.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, the ideas in these topics may not work with later versions and, for that reason, the topics are locked.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, the ideas in these topics may not work with later versions and, for that reason, the topics are locked.
Question User post count in JomSocial profile?
- fullstackedpoker
-
Topic Author
- Offline
- Junior Member
-
Less
More
16 years 6 months ago #41792
by fullstackedpoker
User post count in JomSocial profile? was created by fullstackedpoker
One of the only downfalls of having the profile in Kunena set to JomSocial profile is that it does not display any information regarding the forum. Only information regarding JomSocial. Is there any way to possible display a users forum post counts, a link to the users actual posts or discussions, threads started by the user, etc. ? And if there isn't. Any chance we will see it in 1.6? This would be very nice addition to the integration of JomSocial.
Please Log in or Create an account to join the conversation.
16 years 5 months ago #42648
by toohinc
Replied by toohinc on topic Re: User post count in JomSocial profile?
I agree! Please add this if possible.
Please Log in or Create an account to join the conversation.
16 years 4 months ago #46482
by severdia
Author of Using Joomla from O'Reilly Media. | www.usingjoomlabook.com
Replied by severdia on topic Re: User post count in JomSocial profile?
Have you tried this plugin?
www.jomsocial.com/download/addons/forums...cussions/kunena.html
We could add some extra stuff to this.
www.jomsocial.com/download/addons/forums...cussions/kunena.html
We could add some extra stuff to this.
Author of Using Joomla from O'Reilly Media. | www.usingjoomlabook.com
Please Log in or Create an account to join the conversation.
15 years 8 months ago - 15 years 8 months ago #78336
by Azure
"Do or do not, there is no try..."
Replied by Azure on topic Re: User post count in JomSocial profile?
Hi severdia
That Jomsocial/Kunena plugin is an old version.
Jomsocial don't help users by not giving it a version number. The lastest version, 2.0 WILL NOT work on Jomsocial 2.0.3 and Kunena 1.6.1. What makes matters worse is that there is no reliable hack out there that will provide a critical integration solution for users.
I know there's a viable solution out there to allow post count, user ranks and user titles to be incorporated within the Jomsocial profile area. We just need a coder to leap forward and help those that are in need.
I know a hack isn't the best solution but at least this will help a lot of folks out.
That Jomsocial/Kunena plugin is an old version.
Jomsocial don't help users by not giving it a version number. The lastest version, 2.0 WILL NOT work on Jomsocial 2.0.3 and Kunena 1.6.1. What makes matters worse is that there is no reliable hack out there that will provide a critical integration solution for users.
I know there's a viable solution out there to allow post count, user ranks and user titles to be incorporated within the Jomsocial profile area. We just need a coder to leap forward and help those that are in need.
I know a hack isn't the best solution but at least this will help a lot of folks out.
"Do or do not, there is no try..."
Last edit: 15 years 8 months ago by Azure.
Please Log in or Create an account to join the conversation.
15 years 8 months ago - 15 years 8 months ago #78337
by Azure
"Do or do not, there is no try..."
Replied by Azure on topic Re: User post count, rank and title in JomSocial profile?
PS I am willing to pay.
"Do or do not, there is no try..."
Last edit: 15 years 8 months ago by Azure.
Please Log in or Create an account to join the conversation.
- clairestrife
-
- Offline
- Junior Member
-
15 years 4 months ago - 15 years 2 months ago #92983
by clairestrife
Replied by clairestrife on topic Re: User post count, rank and title in JomSocial profile?
Hi, try to find this line on your profile.header.php line
location : ..../components/com_community/templates/default/profile.header.php
and add this code
put this code anywhere at your current profile.header.php
only showing user posts at jomsocial profile, i also still investigate how to add kunena rank to user profile.
Code:
<?php defined('_JEXEC') or die(); ?>
location : ..../components/com_community/templates/default/profile.header.php
and add this code
Code:
<?php
// Kunena post
$userid = $user->get('id');
$query = "SELECT posts FROM jos_kunena_users WHERE userid = " . $userid ;
$db =& JFactory::getDBO();
$db->setQuery( $query );
$posts = $db->loadObject();
?>
put this code anywhere at your current profile.header.php
Code:
<?php echo $posts->posts; ?> posts
only showing user posts at jomsocial profile, i also still investigate how to add kunena rank to user profile.
Last edit: 15 years 2 months ago by clairestrife.
Please Log in or Create an account to join the conversation.
Time to create page: 0.242 seconds