Change Comment form submit label text
-
Hello, OceanWP, I want to change the
label_submittext into other word.
I know I can editcomments.phpfile belowcomment_form( array( ... 'label_submit' => esc_html__( 'Post Comment', 'oceanwp' ), ... ) );Just change 「Post Comment」to what I want. But now I use child-theme to edit, therefore it is useless edit comments.php under child-theme. Instead we should add some code in functions.php file.
I have tried add_filter on hook like 「comment_form_fields」、「comment_form_default_fields」, and my code is like
function yann_comment_form_fields($fields) { $fields['label_submit'] = esc_html__( '留言', 'oceanwp' ); return $fields } add_filter('comment_form_fields','yann_comment_form_fields');maybe there is some mistake or misunderstanding of using this hook or $fields variable. Could you please help me point out how can I do.
Thank you for your time.
The page I need help with: [log in to see the link]
The topic ‘Change Comment form submit label text’ is closed to new replies.
