Home › Forums › Support › Change text This topic has 1 reply, 2 voices, and was last updated 3 years, 9 months ago by David. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts June 10, 2022 at 7:23 pm #2249796 ana Hello, I want to change the response to the user when they send a comment in a post (is held for moderation), where can i do that? Thanks June 11, 2022 at 4:40 am #2250044 DavidStaff Customer Support Hi there, that text is actually set in WordPress, you can use this PHP Snippet to change that string to Your new text: add_filter( 'gettext', function( $text ) { if ( 'Your comment is awaiting moderation.' === $text ) { $text = 'Your new text'; } return $text; } ); This doc explains adding PHP: https://docs.generatepress.com/article/adding-php/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In