How to Change Genesis Speak Your Mind Comments Heading

You can easily change the text “Speak Your Mind”. Just copy the code below and paste it to the functions.php file in your Genesis child theme.

This code is created by Genesis. This file is under: Genesis, Tutorials

Code Snippet:

function change_default_comment_text($args) {
$args[‘title_reply’] = ‘Leave a Comment’;
return $args;
}
add_filter( ‘genesis_comment_form_args’, ‘change_default_comment_text’ );

1. Appearance -> Editor -> Select the child theme to Edit: -> Theme Functions

Video Turorial:

Miguel

I started this tech blog back in 2011 as a place to write down processes I took to fix my client systems and network. Now I write some tips and tricks to help others with the tech issues that one might encounter.

You may also like...