Info
- 2 posts
- 2 voices
- Started 3 years ago by Paultjuh2
- Latest reply from _ck_
- This topic is not a support question
Auto close topics
-
- Posted 3 years ago #
I want my topics close automatic.. at 300 post.
Is it possible?
(srry for bad english)
-
- Posted 3 years ago #
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; } } -
You must log in to post.