Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

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 Kunena hide signitures from unregistered users

More
14 years 10 months ago #94429 by sozzled
If you would like to pay for this extended functionality to be implemented as a standard feature of Kunena, I will ask the project team to see what they can do for you. :)

You have the ability (as I have explained above) in the current version of Kunena to do this on a user-by-user basis. There is no ability to do this across-the-board for all users.

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

  • C0n
  • C0n's Avatar Topic Author
  • Offline
  • Premium Member
  • Premium Member
  • Only the strongest will survive
More
14 years 10 months ago #94454 by C0n

sozzled wrote: If you would like to pay for this extended functionality to be implemented as a standard feature of Kunena, I will ask the project team to see what they can do for you. :)

You have the ability (as I have explained above) in the current version of Kunena to do this on a user-by-user basis. There is no ability to do this across-the-board for all users.


Sure why not :D

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

  • C0n
  • C0n's Avatar Topic Author
  • Offline
  • Premium Member
  • Premium Member
  • Only the strongest will survive
More
14 years 10 months ago - 14 years 10 months ago #94985 by C0n
I finaly got this working i did it using a template override but in the kunena core.

You must edit components/com_kunena/template/defualt/view/message.actions.php

And change the code
Code:
<?php if ($this->signatureHtml) : ?> <div class="kmsgsignature"> <?php echo $this->signatureHtml ?> </div> <?php endif ?>

To this
Code:
<?php $user =& JFactory::getUser(); if($user->get('guest') == 1) : ?> <div class="kmsgsignature"> </div> <?php endif; ?> <?php if($user->get('guest') == 0) : ?> <?php if ($this->signatureHtml) : ?> <div class="kmsgsignature"> <?php echo $this->signatureHtml ?> </div> <?php endif; ?> <?php endif ?>
Last edit: 14 years 10 months ago by C0n.

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

Time to create page: 0.256 seconds