General Discussions
3
Posts
2
Users
0
Reactions
756
Views
Oct 20, 2022 2:36 am
How to disable recommended topic when writing topic title because that feature consume CPU resource a lot and crash the site.
Thank you
2 Replies
Oct 20, 2022 4:51 am
Hi @adisaputro,
Put this hook in a PHP snippet of the Code Snippetplugin or in the functions.php file of the current active WordPress theme:
add_filter('wpforo_topic_suggestion', '__return_false');
Oct 20, 2022 4:59 am
It works, thanks Robert