can I allow user to edit his own comment (without, username, url, or mail) on front-end. For example simple form on custom worpdress page with his comment and submit button.
Thank you all in advance!
can I allow user to edit his own comment (without, username, url, or mail) on front-end. For example simple form on custom worpdress page with his comment and submit button.
Thank you all in advance!
You can add the following code in function.php
$subscriber= get_role('subscriber');
$subscriber->add_cap('edit_comment');
Meanwhile edit_comment
is only supported in version 3.1 or newer
Or you can use this plugin link