Hi I want people to be able to say the same comments more then ones. So the same text? How can I enable this?
Search
Close
AI Search
Classic Search
Share:
Notifications
Clear all
Apr 01, 2023 7:51 pm
1 Reply
Apr 03, 2023 12:04 pm
Hi @mau,
Please use the native (core) WordPress hook code below:
add_filter('duplicate_comment_id', '__return_false');
Put the hook code above in the WordPress active theme functions.php file.
More information on how to add insert custom code you can find here: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/
Share:

