Site logo

Archived topic

Add/Modify text in "Leave a Comment" Section

3 replies · Started by Jay on June 11, 2021

Viewing posts 1–4 of 4

Hi, I'm trying to add a comment disclaimer in the comments box section where it says “Leave a Comment”. Is this possible?

Thank you 🙂

Hi Jay,

You can try this PHP snippet:

add_filter( 'generate_leave_comment','tu_custom_leave_comment' );
function tu_custom_leave_comment() {
    return '<div>your disclaimer content</div>Leave a Comment';
}

You can use either of the method in the below article to add PHP:
Adding PHP: https://docs.generatepress.com/article/adding-php/

It works! 😃

Thank you, I really appreciate the help.

You are welcome Jay :)

This archived topic is closed to new replies.