Dec 04, 2023 10:42 pm
What is the difference between these three states of a topic: Active, Replied and Hot?
Is there a way to collapse two of these states together or remove a state?
4 Replies
Dec 05, 2023 9:08 am
- Replied: has at least one reply
- Active: has 5 and more replies
- Hot: has 20 and more replies
You can change the 5 and 20 numbers using the following code snippets:
add_filter('wpforo_active_topic_min_posts', function($number) { return 5; }); add_filter('wpforo_hot_topic_min_posts', function($number) { return 20; });