AI Search
Classic Search
Notifications
Clear all
Dec 05, 2023 2:42 am
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 1:08 pm
- 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;
});