The Kunena team has announce the arrival of Kunena 7.0.9 [K 7.0.9] 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.
Where can I download the code to deduct point from jomsocial when member's topic or post deleted? I see only give point but don't have deduct point at the jomsocial user point.
Here is the code in jomsocial rule for Kunena. What and where should I add to this file?
<?xml version="1.0" encoding="utf-8"?>
<jomsocial>
<component>com_kunena</component>
<rules>
<rule>
<name>Post a new topic in Kunena Forums</name>
<description>Give points when a registered user creates a new thread.</description>
<action_string>com_kunena.thread.new</action_string>
<publish>true</publish>
<points>2</points>
<access_level>1</access_level>
</rule>
<rule>
<name>Delete a new topic in Kunena Forums</name>
<description>Deduct points when a registered user delete a new thread.</description>
<action_string>com_kunena.thread.newDelete</action_string>
<publish>true</publish>
<points>-2</points>
<access_level>1</access_level>
</rule>
<rule>
<name>Reply to a topic in Kunena Forums</name>
<description>Give points when a registered user replies to a thread.</description>
<action_string>com_kunena.thread.reply</action_string>
<publish>true</publish>
<points>1</points>
<access_level>1</access_level>
</rule>
<rule>
<name>Attach an image to a topic in Kunena Forums</name>
<description>Give points when a registered user attaches an image to a post.</description>
<action_string>com_kunena.thread.attach.image</action_string>
<publish>true</publish>
<points>1</points>
<access_level>1</access_level>
</rule>
<rule>
<name>Attach a file to a topic in Kunena Forums</name>
<description>Give points when a registered user attaches a file to a post.</description>
<action_string>com_kunena.thread.attach.file</action_string>
<publish>true</publish>
<points>1</points>
<access_level>1</access_level>
</rule>
</rules>
</jomsocial>
Sorry but editing this file will not do what you want. Yes the rules are defined here, but the code needs to be implemented inside of Kunena to call such userpoint changes. In Kunena 1.6 this rule you are requesting does not exist and is not implemented.