• Resolved Mxcrusty

    (@davidimx)


    Hi there, I wanted to know if there is an option to limit the number of characters in the bio field because it breaks the site when people input too many characters. If it’s not possible natively, is there a code snippet that could help me achieve this?

    If someone could help me, that would be really appreciated.

Viewing 1 replies (of 1 total)
  • Plugin Author Stiofan

    (@stiofansisland)

    Hi @davidimx,

    You can limit the words in bio using following code snippet:

    add_filter('uwp_profile_bio_content_limit', 'uwp_profile_bio_content_limit_cb');
    function uwp_profile_bio_content_limit_cb(){
        return 50;
    }

    You can change the value from 50 to your required limit.

    Thanks,

    Stiofan

Viewing 1 replies (of 1 total)

The topic ‘limit characters – Bio field’ is closed to new replies.