Have you tried looking in your theme’s comments.php template file?
Hello esmi,
Thank you for you answer.
Indeed, I checked my theme’s comment.php template file but it looks like there is nothing with it (only code concerning comment navigation and comments displaying). In english version, it is working perfect. But in French no, that’s why I thought it was coming from french languages files.
Please help.
Does comments.php include the line <?php comment_form();?>?
Yes, it is containing this line at the very end of the comment.php file !
The text you need to change could be somewhere in your theme’s functions.php file. The callback function that is being used should be mentioned in comment_form() – which should narrow the search down for you.
Thank you for your help.
I looked each line in the functions.php file and there is nothing. The only form there is the form function for my contact page.
Nothing about post comment… 🙁
I dont know what more to do..
In that case, you need to have a look at http://codex.ww.wp.xz.cn/Function_Reference/comment_form
Your theme is probably using the default form parameters at the moment.
Thank you, your link was helpful (it helped me to fix one other thing I was wondering how to do it).
But, still, I didn’t suceed to understand and find how to change the form thing. Damn it 🙁
Maybe just a way to put the boxes at the line (boxes under name, email, comments) that would fix it ? As the translation correction doesn’t work.
How can I do that?!
Maybe just a way to put the boxes at the line (boxes under name, email, comments) that would fix it ? As the translation correction doesn’t work.
How can I do that?!
Someone to help me please?
I have the same problem.
I’m using Magazine Basic theme.
http://www.philippinesangeles.com
And in the comments portion there are default fields like Name, Email, Website.
I would like to edit the “website” field into “Telephone” and the phrase
“Your email address will not be published. Required fields are marked *”
into
“Your email address and telephone will not be published. Required fields are marked *”
But don’t know how to do it.
BELOW IS WHAT I FIND IN MY comments.php…
<div id="comments">
<?php if ( post_password_required() ) : ?>
<div class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'magazine-basic' ); ?></div>
</div><!-- .comments -->
<?php
return;
endif;
?>
<?php
// You can start editing here -- including this comment!
?>
<?php if ( have_comments() ) : ?>
<h3 id="comments-title">
<?php
printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'magazine-basic' ),
number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
?>
</h3>
<?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
<div class="navigation">
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'magazine-basic' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'magazine-basic' ) ); ?></div>
</div>
<?php endif; // check for comment navigation ?>
<ol class="commentlist">
<?php wp_list_comments( array( 'callback' => 'pbt_mytheme_comment', 'reply_text' => __('Reply', 'magazine-basic') ) ); ?>
<?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
<div class="navigation">
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'magazine-basic' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'magazine-basic' ) ); ?></div>
</div>
<?php endif; // check for comment navigation ?>
<?php else : // this is displayed if there are no comments so far ?>
<?php endif; ?>
<?php
$args = array(
'comment_notes_after' => '',
'comment_field' => '<p class="comment-form-comment"><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>'
);
comment_form($args); ?>
</div><!-- #comments -->
hi, I can not find the comment field to change it to english. please advise where can I find it? my comment field poping in French.
here is a lonk to my site:
http://www.sophiadreams.com
thanks in advance.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Hi Sophia, I’m sure someone will be able to help, but you need to first create your own thread. This thread’s discussion ended 8 months ago, so I’m closing this thread.