Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

Question Show Post Count Rank and Mod Rank Separately

  • Nihil
  • Nihil's Avatar Topic Author
  • Visitor
12 years 10 months ago #1 by Nihil
Is it possible to show user post count rank and moderator rank separately? Or to show both?

i've asked this a long time ago and would like to know if things have changed.

The goal is to show who the moderators are AND show their post count rank image. We're proud of our post counts, and we want members to know who the mods are.

What are my options here? Anything?

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

More
12 years 10 months ago #2 by sozzled

Nihil wrote: i've asked this a long time ago and would like to know if things have changed.

This is the topic, I think: How do i show post count rank icons instead of moderator rank? .

Nihil wrote: We're proud of our post counts, and we want members to know who the mods are.

I'm actually a little embarrassed about the amount that I have written here. How would you suggest I improve this, in my case, for example?

Attachments:
The following user(s) said Thank You: Nihil

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

  • Nihil
  • Nihil's Avatar Topic Author
  • Visitor
12 years 10 months ago #3 by Nihil
Thanks for the reply.

That shows the post count, but not the post count rank and image/symbol.

Instead of the dots for being a moderator, you'd have the dots that match your post count. So i would have the title Moderator and say, 3 blue circles.

i went through the settings and couldn't figure out what might give that arrangement.

10K Posts? Wow.

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

More
12 years 10 months ago #4 by thetoast
you could use Alphauserpoints or Jawards to do something like that.

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

  • Nihil
  • Nihil's Avatar Topic Author
  • Visitor
12 years 10 months ago - 12 years 10 months ago #5 by Nihil
What would AUP do for that? i've had that on my site for quite a while and like it. But getting it to talk to Kunena has been difficult (but i'm going to try someone's hack today).

i just install JAwards, but it doesn't seem to integrate into Kunena either. My guys want their epeens on the forum where everyone has to see it. Heh. i'll see what i can do with it.

Thanks!
Last edit: 12 years 10 months ago by Nihil.

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

  • Nihil
  • Nihil's Avatar Topic Author
  • Visitor
12 years 10 months ago - 12 years 10 months ago #6 by Nihil
This shows: post count, post count rank (or mod status :angry:) and AUP medal. But not their AUP total. My Karma + and - buttons are still invisible :( .

Getting there... one step at a time.
Code:
<?php /** * @version $Id: profile.vertical.php 3429 2010-09-06 16:01:10Z severdia $ * Kunena Component * @package Kunena * * @Copyright (C) 2008 - 2009 Kunena Team All rights reserved * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://www.kunena.com * **/ // Dont allow direct linking defined ( '_JEXEC' ) or die (); ?> <?php // Made By Saman BEGIN ?> <?php $livesite = JURI::base(); $api_AUP = JPATH_SITE.DS.'components'.DS.'com_alphauserpoints'.DS.'helper.php'; if ( file_exists($api_AUP)) { require_once ($api_AUP); $userrankinfo = AlphaUserPointsHelper::getUserRank('', $this->profile->userid); } $rank = $userrankinfo->rank; ?> <?php // Made By Saman END ?> <?php if (!isset($this->showUnusedSocial)) $this->showUnusedSocial = false; ?> <ul class="kpost-profile"> <li class="kpost-username"> <?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->escape($this->username) ); ?> </li> <?php if ($this->usertype) : ?> <li class="kpost-usertype"> <span class = "kmsgusertype">( <?php echo $this->escape($this->usertype) ?> )</span> </li> <?php endif ?> <?php if ($this->avatar) : ?> <li class="kpost-avatar"> <?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?> </li> <?php endif; ?> <?php if ($this->profile->userid): ?> <li><span class="kicon-button kbuttononline-<?php echo $this->profile->isOnline(true) ?>"><span class="online-<?php echo $this->profile->isOnline(true) ?>"><span><?php echo $this->profile->isOnline() ? JText::_('COM_KUNENA_ONLINE') : JText::_('COM_KUNENA_OFFLINE'); ?></span></span></span></li> <?php if ($this->userranktitle) : ?> <li class="kpost-userrank"> <?php echo $this->escape($this->userranktitle) ?> <strong><?php echo $userrankinfo->rank; //echo $this->escape($this->userranktitle) ?></strong> </li> <?php endif ?> <?php if ($this->userrankimage) : ?> <li class="kpost-userrank-img"> <?php if($rank !=NULL && $userrankinfo->image !=NULL) echo '<img src="'.$livesite.'components/com_alphauserpoints/assets/images/awards/large/'.$userrankinfo->image.'" alt="'.JText::_($userrankinfo->rank).'" />'; ?> <?php echo $this->userrankimage ?> </li> <?php endif ?> <?php if ($this->personaltext) : ?> <li class="kpost-personal"> <?php echo KunenaParser::parseText($this->personaltext) ?> </li> <?php endif ?> <?php if ($this->userposts) : ?> <li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') .' '. intval($this->userposts); ?></li> <?php endif ?> <?php if ($this->userpoints) : ?> <li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') .' '. intval($this->userpoints); ?></li> <?php endif ?> <?php if ( $this->userkarma ) : ?> <li class="kpost-karma"> <span class="kmsgkarma"> <?php echo $this->userkarma ?> </span> </li> <?php endif ?> <?php if ( $this->usermedals ) : ?> <li class="kpost-usermedals"> <?php foreach ( $this->usermedals as $medal ) : ?> <?php echo $medal; ?> <?php endforeach ?> </li> <?php endif ?> <li class="kpost-smallicons"> <?php echo $this->profile->profileIcon('gender'); ?> <?php echo $this->profile->profileIcon('birthdate'); ?> <?php echo $this->profile->profileIcon('location'); ?> <?php echo $this->profile->profileIcon('website'); ?> <?php echo $this->profile->profileIcon('private'); ?> <?php echo $this->profile->profileIcon('email'); ?> </li> <?php endif ?> </ul>
Last edit: 12 years 10 months ago by Nihil. Reason: Code tag

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

Time to create page: 0.552 seconds