Hi @memetrader,
You will find the comment title in the theme files.
There will be a file of functions in which you will find.
Which theme are you using?
For themes that are translable, we can use this plugin to change text (string).
https://wordpress.org/plugins/say-what/
>Which theme are you using?
I am using a proprietary commercial theme.
I would rather avoid the use of a plugin.
I am not able to find this theme.
Can you please send me the theme URL.
Is this a free theme or paid?
My suggestion is that you check whether the comments.php file of your theme uses the built-in comment_form()
function to output the comment form. (Most do.) If your theme generates its own comment form, then you should be able to change the title by editing the appropriate (child) theme file. Otherwise…read on.
The comment_form()
function accepts a large number of arguments, including the title of the form, and there are a number of filters that will allow you to replace the title. Here is a description of the function, and it should lead you to the filter you’ll need to use:
https://developer.wordpress.org/reference/functions/comment_form/
@diondesigns Thank you that was very helpful!