• Resolved Resistanc3

    (@resistanc3)


    Hey guys, i just googled the whole day already to find out how to change the text “leave a comment”.

    I already saw some posts about the “comment_form()” function and already modified text here and there, but i can’t find a way to change the text of the button in a category page.

    Already tried with:
    – title_reply
    – label_xy
    (don’t remember how they were called exactly)

    Would be nice if u could help me.

Viewing 5 replies - 1 through 5 (of 5 total)
  • To change the button label (text) , you pass the next key value to your array
    like

    comment_form( array( 'label_submit' => 'Submit Comment' ) );

    Thread Starter Resistanc3

    (@resistanc3)

    I just tried to add it, but it failed, nothing changes:

    $comm_args = array(
          'fields'        => $comment_fields,
          'comment_field' => '<div class="row">
            <div class="col-sm-12">
              <textarea id="comment" name="comment" aria-required="true" cols="45" rows="8"  placeholder="'.__( 'Comment', 'wen-associate' ).'"></textarea>
            </div><!-- .col-sm-12 -->
          </div><!-- .row -->',
        'label_submit' => 'Submit Comment',);
    
    comment_form( $comm_args );

    See here

    Edit: It worked, but for a different page. I wanted to change the text seen above in the image. This is the page when you open a category and see all posts from this category.

    You said it worked. But can you please make your requirement more clear and now where do you want to change the text?

    Thread Starter Resistanc3

    (@resistanc3)

    Hey, thanks for your answer. Yes, i said it worked on a different page than expected. Did you see the image? Theres the target page i meaned to change. Theres the german category text above “Category: General”.

    And down below theres the button leave a comment. This one.

    Theme Author WEN Themes

    (@wenthemes)

    It is still not clear through your image. But above snippets should normally work for submit button in all posts and pages.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change "leave a comment" on category page’ is closed to new replies.