Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #59104
    rockmusicraider
    Participant

    I would like to replace ‘Leave a Reply’ in the comments section with ‘Please speak your mind!’.

    The code should look something like this, I believe: <?php comment_form(array(‘title_reply’=>’Please Speak Your Mind:’)); ?>

    Cannot get it to work. Please help.

    #59121
    Sakin
    Keymaster

    @Dan: First build child theme. For child theme and sample child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy comments.php file to your child theme file and then edit comment_form(); and change the text as per your need by replacing it with following

    comment_form(array(
       'title_reply' => 'Leave a Reply',
       'title_reply_to' => 'Leave a Reply to %s',
    ));
    #59149
    rockmusicraider
    Participant

    @ Sakin: Thank you kindly. Works. Appreciate your help.

    #95038
    mwybranowski
    Participant

    HI I used the above method and it doesn’t work for me. I created a child theme, named it Catch Adaptive Child theme.
    Then I copied the comments.php file there.
    in the child theme I changed the last but one line:
    <?php comment_form(); ?>

    to proposed:
    <?php comment_form(array(
    ‘title_reply’ = ‘Leave a Reply’,
    ‘title_reply_to’ = ‘Leave a Reply to %s’,
    )); ?>

    On the site I still have ‘Leave a reply’

    Can you help me? What I’m doing wrong?

    #95067
    Sakin
    Keymaster

    @mwybranowski: Please post in your site URL and then I can check in.

    #95071
    mwybranowski
    Participant
    #95073
    Sakin
    Keymaster

    @mwybranowski: What are you trying to change it? That code changes text above your comment form. But if you are trying to change that in post meta, then you need to copy catchadaptive_entry_meta() function from catchadaptive-core.php file and copy to your child theme functions.php file and then edit the text in that function in your child theme.

    Also, if you are using site in different language. Then you might want to contribute in translation from https://translate.wordpress.org/locale/pl/default/wp-themes/catch-adaptive

    #116522
    Anonymous
    Inactive

    Thanks you….

    #117500
    Anonymous
    Inactive

    Thank you ‘Leave a Reply’ OKE MEN.see more:

    #117509
    Sakin
    Keymaster

    @ta-diep: but your site is not using our theme.

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Remove Leave A Reply from comments’ is closed to new replies.