Apr 01, 2023 3:51 pm
Hi I want people to be able to say the same comments more then ones. So the same text? How can I enable this?
1 Reply
Apr 03, 2023 8:04 am
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/