Forums

Join
bbPress Support ForumsTroubleshootingAuto close topics

Info

Auto close topics

  1. I want my topics close automatic.. at 300 post.

    Is it possible?

    (srry for bad english)

  2. It would be possible to do that via a plugin.

    this might work, untested:

    add_action('bb_head','close_long_topics');
    function close_long_topics() {
    global $topic;
    if (is_topic() && $topic->topic_open===1 && $topic->topic_posts>299) {
    	bb_close_topic($topic->topic_id);
    	$topic->topic_open=0;
    }
    }
  3. You must log in to post.