aubert wrote:How to delete "response" ?
If you want to keep the other buttons, you could probably do a dirty trick and edit your JoComment language file and remove that specific string just to make it "invisible". Hope that makes sense. Not an elegant solution, but hey it works
EDIT: Open up /components/com_comment/joscomment/language/french.php in a text editor, and around line number 48 you will see...
JOSC_define('_JOOMLACOMMENT_REPLY', 'Répondre');
...replace that with...
JOSC_define('_JOOMLACOMMENT_REPLY', '');
...and that will 'hide' the respond text link
Just remember that you did it and backup the original, incase you want to get it back one day