• 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.
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.
Top Bottom