I was inspired by this Q&A: Add a Custom Field in Comment Box next to the Text area but I have to insert the custom field after the textarea but before the Send button.
I did not found the proper action to customize and I guess it not exists at all.
comment_form_after_fields puts my output before textarea
comment_form_after puts my output after Send button
Am I wrong?
add_action( 'comment_form_after', 'test');
function test(){
echo "TEST";
}
add_action( 'comment_form_after_fields', 'test');
function test(){
echo "TEST";
}