Viewing 1 replies (of 1 total)
  • Hello @ocio132

    I’m not sure that I understand what you’re trying to do due to the different language, but if you’re looking to change what H tag that string is, you will need to use a little PHP snippet like this –

    add_filter( 'comment_form_defaults', function ( $defaults ){
      $defaults['title_reply_before'] = '<h4 id="reply-title" class="comment-reply-title">';
      $defaults['title_reply_after'] = '</h4>';
      return $defaults;
    } );

    Hope this helps!

    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘Head’ is closed to new replies.