• Resolved amer3

    (@amer3)


    Dear,

    How can I change content for ”LEAVE A REPLY” and ”POST COMMENT”. I want to change this in something else. I can not find this in files. Please help.

    Best regards,

Viewing 1 replies (of 1 total)
  • Hi there,

    Thank you for getting in touch with us.

    Please go to functions.php file and add this code:

    function juliet_comment_reform( $arg ) {
    	$arg['title_reply']  = __( 'Leave a Comment:' ); // this will change Leave a Reply heading
    	$arg['label_submit'] = __( 'Post a Question' ); // this will change Post a question button
    
    	return $arg;
    }
    add_filter( 'comment_form_defaults', 'juliet_comment_reform' );

    Hope that helps.

    Best regards

    • This reply was modified 6 years, 8 months ago by jarektheme.
Viewing 1 replies (of 1 total)
  • The topic ‘Change content for ”LEAVE A REPLY” and ”POST COMMENT”’ is closed to new replies.