Archived topic
How to Modify Comments Box
1 reply · Started by Data on December 2, 2021
I want to chnage text "Leave a Comment" to "Feedback"
and
remove website field from the comments.
and
button text from "Post comment" to "Send Feedback"
and
remove "Save my name, email, and website in this browser for the next time I comment" check box
Hi there,
1. Change leave comment title:
https://docs.generatepress.com/article/generate_leave_comment/
2. Remove Website URL Field - explained here:
https://docs.generatepress.com/article/remove-e-mail-and-url-field-from-comment-form/
your can remove the line: unset($fields['email']);
3. Post Comment button text - this filter:
https://docs.generatepress.com/article/generate_post_comment/
Example of code:
add_filter( 'generate_post_comment',function () {
return 'Post comment button text';
} );
4. Cookie Consent - see Toms reply here: