change the title of comments in my wp template

Ok i have website, and want to change Leave Reply string near the bottom of the page. It is wordpress template, and i looked all over the page to find where is that string located. I ended up on get_the_title() function inside wp-incledes. I watched inside comment box in wp-admin, and there is no string like that.

Here is the link, if you can give me idea.

http://zivibolje.com/pobedite-nesanicu-u-par-koraka/

Related posts

Leave a Reply

2 comments

  1. ** * update * **

    Your theme uses the function comment_form() (reference). You can add arguments to that function, for instance:

    comment_form(array('title_reply' => 'Leave a reply' ));

    Go to your theme editor, select comments.php and at the second to last rule replace comment_form(); with the code above. Replace ‘Leave a reply’ with your own text of course.