Site logo

[Support request] Change text

Home Forums Support [Support request] Change text

Home Forums Support Change text

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #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

    #2250044
    David
    Staff
    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.