- Posts: 11
- Thank you received: 3
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
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 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Solved Autosubscription Plugin
14 years 3 months ago #116766
by kylepond
Replied by kylepond on topic Re: Autosubscription Plugin
I'm almost done with this plugin. The plugin is pretty basic- it will just subscribe new users to all categories. The design allows for opt out. I'll share when finished if anybody wants it.
Please Log in or Create an account to join the conversation.
14 years 3 months ago #116841
by kylepond
Replied by kylepond on topic Re: Autosubscription Plugin
Attached is the autosubsription pluging described above. It won't work pre Joomla 1.6, but could be modified. I hope other people find it useful.
The following user(s) said Thank You: Jiminimonka
Please Log in or Create an account to join the conversation.
- Jiminimonka
-
- Offline
- Elite Member
-
- YBAS!
14 years 3 months ago #116914
by Jiminimonka
Replied by Jiminimonka on topic Re: Autosubscription Plugin
I will have a look, not sure if it is what I want but still.
Thanks.
Thanks.
Please Log in or Create an account to join the conversation.
14 years 2 months ago #119111
by kylepond
Replied by kylepond on topic Re: Autosubscription Plugin
Yikes, don't use the first file. I just noticed I had an extra space at the end of the code.
Please Log in or Create an account to join the conversation.
- lurd.sammie
-
- Offline
- New Member
-
Less
More
- Posts: 14
- Thank you received: 0
14 years 2 months ago #120262
by lurd.sammie
Replied by lurd.sammie on topic Re: Autosubscription Plugin
I also need auto-subscribe plugin. I have just moved from phpBB where I was using Board watch to auto-subscribe all users. I had to move because one has to depend on joomla-phpBB bridges for a single sign-on all the time and quite often they let you down badly.
The Board watch also appends a link for you to click if you don't want to auto-subscribe to topics anymore.
Another important feature of Board watch is the option to send notification email once and not send anymore until the user visits the forum. So if user selects such option then he will not be notified again until he visits the forum to read the updates. This way it curbs the flood of emails bombarding the users which in itself could be irritating to users.
By the way has anybody tried this plugin yet?
Any feedback on performance?
Thnx
The Board watch also appends a link for you to click if you don't want to auto-subscribe to topics anymore.
Another important feature of Board watch is the option to send notification email once and not send anymore until the user visits the forum. So if user selects such option then he will not be notified again until he visits the forum to read the updates. This way it curbs the flood of emails bombarding the users which in itself could be irritating to users.
By the way has anybody tried this plugin yet?
Any feedback on performance?
Thnx
Please Log in or Create an account to join the conversation.
14 years 2 months ago #120269
by kylepond
I've been using it. It's basic and I haven't noticed any performance issues. If you want to test it, make sure you use the attached file. There's very little code in the plugin:
As per the update notifications, I believe Kunena has that feature. Under configurations, see users, subscriptions, topic subscriptions (email first update).
Replied by kylepond on topic Re: Autosubscription Plugin
I've been using it. It's basic and I haven't noticed any performance issues. If you want to test it, make sure you use the attached file. There's very little code in the plugin:
Code:
<?php
defined('_JEXEC') or die('Restricted access');
jimport('joomla.plugin.plugin');
class plgUserkunena_autosubcat extends JPlugin
{
function onUserAfterSave($data, $isNew, $result, $error) {
if (! $isNew) {
return true;
}
$userid = JArrayHelper::getValue($data, 'id', 50, 'int');
if($result) {
$db = &JFactory::getDbo();
$query = "INSERT INTO `#__kunena_subscriptions_categories` (`catid`, `userid`)
SELECT `id`, $userid FROM `#__kunena_categories`";
$db->setQuery($query);
if (!$db->query()) {
throw new Exception($db->getErrorMsg());
}
}
}
}
?>
As per the update notifications, I believe Kunena has that feature. Under configurations, see users, subscriptions, topic subscriptions (email first update).
Please Log in or Create an account to join the conversation.
Time to create page: 0.264 seconds