Hi,
I would like to change the Comments Box intro text from “Leave a reply” to “Leave a review”. I’ve tried adding the code from your documentation to the child theme functions.php
But this is not working for me, am I missing something?
Fionadee
Hey Fionadee,
I could not find a contact form anywhere. Where can we see it?
Best regards,
Victoria
Hi Fionadee,
Please try this code:
//--------------------------------------
// function - Comment box text
//--------------------------------------
function custom_comment_title(){
?>
<script>
jQuery(window).load(function(){
// Replace coments title "Leave a Reply".
jQuery(".av-buildercomment .miniheading").text("Leave a Review");
});
</script>
<?php
}
add_action('wp_head', 'custom_comment_title');
Best regards,
Victoria
Thank you Victoria, that works a treat!
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon