Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #270132

    Hi there,

    is there an option to limit the number of chars in a textarea of the build in form element?

    Cheers
    Michael

    #270162

    Hey Michael!

    Please add following code to bottom of Functions.php file in Appearance > Editor and adjust the value (50) as needed

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery("textarea").attr("maxlength", 50);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

    #270177

    Works great. Thanks

    #270185

    Hi!

    You are welcome Michael, glad we could help! :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Limit number of chars in contact form textarea?’ is closed to new replies.