Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1187828

    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

    #1188141

    Hey Fionadee,

    I could not find a contact form anywhere. Where can we see it?

    Best regards,
    Victoria

    #1188147

    Hi Victoria,
    Sorry about that, you can see an example here:

    Thanks,
    Fionadee

    #1188243

    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

    #1188597

    Thank you Victoria, that works a treat!

    #1188735

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change text in comment box’ is closed to new replies.