• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Minimum Number Of Posts To Create Threads In Certain Forums

Status
Not open for further replies.
No, just enter the ID number: 1,2

You haven't actually checked the "Enable Mod" checkbox...
 
Can this add on be used to send posts to moderation if #posts less than criteria set, rather than disallow completely?
 
Yes, U can. Try it :
if (!empty($options->post_threads)) {
if ($visitor['user_id'] && $visitor['message_count'] < $options->num_posts_threads && in_array($forum['node_id'], $threadsfids) && !$visitor['is_admin']) {
$this->responseError($options->threads_error);
return parent::actionCreateThread();
}
}
return parent::actionCreateThread();
 
Status
Not open for further replies.
Back
Top Bottom