[Theme: Themia Lite] Change the "Leave A Reply" text
-
Has anyone successfully change the “Leave A Reply” text on comments?
I’ve tried the normal edits Like these:
In the theme’s comments.php file I tried this:
<?php comment_form(array(‘title_reply’=>’We like comments. Please leave one, thanks!’)); ?>
and in the theme’s function.php file I tried this:
// Add filter to change the text for commenting
add_filter( ‘comment_form_defaults’, ‘comment_reform’ );function comment_reform ($arg) {
$arg[‘title_reply’] = __( ‘Please leave a comment, thanks!’ );
return $arg;
}Neither worked. I don’t want to edit the core files. Does anyone know any other tricks, or why this theme the usual stuff doesn’t work?
I even tried the Custom Comment Message plugin, which I would love to use, but it wouldn’t work either. So something tells me, I need to look elsewhere in the theme’s files. I’ve looked in the single.php and page.php files and I don’t see anything there. If anyone has any ideas or could at least point me in the right direction I would greatly appreciate it. ??
- The topic ‘[Theme: Themia Lite] Change the "Leave A Reply" text’ is closed to new replies.