Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Script [Closed] What determines "Hot" on the icons?

5 Posts
4 Users
3 Reactions
2,400 Views
Posts: 26
Topic starter
(@ruralinfo)
Eminent Member
Joined: 9 years ago

Just wondering what makes the "Hot" icon show up?  Also if I am not using the Q and A format, is there a way to not show the solved icon at the bottom?  Thanks..  Looking forward to the stable release and the addons..  This forum system blows all others away..  I have tried them all.  

4 Replies
Posts: 990
Moderator
(@martin)
Support Team
Joined: 9 years ago

Thank you ruralinfo,

Just wondering what makes the "Hot" icon show up? 

Topic becomes "Hot" after 20 replies. 

Also if I am not using the Q and A format, is there a way to not show the solved icon at the bottom?

This doesn't have direct relation to Q&A layout. The "Solved" featured is used for all kind of forums. But there is no option to turn that off yet.

2 Replies
(@cotner)
Joined: 3 years ago

Estimable Member
Posts: 132
Posted by: @martin

Topic becomes "Hot" after 20 replies. 

Is there ANY way of changing this? I would love for it to be something like 75 or 100.

Robert
Admin
(@robert)
Joined: 9 years ago

Support Team
Posts: 10616

@cotner,

You can use this hook code in Code Snippets plugin as a PHP code or in the functions.php file of your current active WordPress theme. This is a new hook, so it'll work starting from the next 2.0.7 version.

All topics with more than 75 posts will be displayed as hot:

add_filter( 'wpforo_hot_topic_min_posts', function($n){ return 75; });
Posts: 132
(@cotner)
Estimable Member
Joined: 3 years ago

Outstanding @robert

Thank you very much!