AI Search
Classic Search
Notifications
Clear all
General Discussions
3
Posts
2
Users
0
Reactions
1,406
Views
Oct 20, 2022 6: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
wpForo Version
2.0.9
WordPress Version
6.0.3
2 Replies
Oct 20, 2022 8: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 8:59 am
It works, thanks Robert